Home
last modified time | relevance | path

Searched refs:longreadlen (Results 1 – 3 of 3) sorted by relevance

/php-src/ext/odbc/tests/
H A Dodbc_longreadlen_001.phpt13 odbc_exec($conn, "CREATE TABLE longreadlen (id INT, whatever VARBINARY(50))");
14 odbc_exec($conn, "INSERT INTO longreadlen VALUES (1, CONVERT(VARBINARY(50), 'whatever'))");
16 $res = odbc_exec($conn, "SELECT * FROM longreadlen");
28 odbc_exec($conn, "DROP TABLE longreadlen");
/php-src/ext/odbc/
H A Dphp_odbc.c657 result->longreadlen = flag; in php_odbc_fetch_attribs()
678 result->longreadlen = ODBCG(defaultlrl); in odbc_bindcols()
1458 buf = emalloc(result->longreadlen + 1); in php_odbc_fetch_hash()
1470 ZVAL_STRINGL(&tmp, buf, result->longreadlen); in php_odbc_fetch_hash()
1628 buf = emalloc(result->longreadlen + 1); in PHP_FUNCTION()
1847 if (result->longreadlen <= 0) { in PHP_FUNCTION()
1850 fieldsize = result->longreadlen; in PHP_FUNCTION()
1859 fieldsize = (result->longreadlen <= 0) ? 4096 : result->longreadlen; in PHP_FUNCTION()
2032 result->longreadlen <= 0) { in PHP_FUNCTION()
2038 buf = emalloc(result->longreadlen); in PHP_FUNCTION()
[all …]
H A Dphp_odbc_includes.h226 zend_long longreadlen; member

Completed in 12 milliseconds