Lines Matching refs:longreadlen
600 result->longreadlen = flag; in php_odbc_fetch_attribs()
621 result->longreadlen = ODBCG(defaultlrl); in odbc_bindcols()
1432 if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { in php_odbc_fetch_hash()
1437 buf = emalloc(result->longreadlen + 1); in php_odbc_fetch_hash()
1440 …rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1), sql_c_type, buf, result->longreadlen + 1, &re… in php_odbc_fetch_hash()
1449 ZVAL_STRINGL(&tmp, buf, result->longreadlen); in php_odbc_fetch_hash()
1595 if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { in PHP_FUNCTION()
1601 buf = emalloc(result->longreadlen + 1); in PHP_FUNCTION()
1603 …rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1),sql_c_type, buf, result->longreadlen + 1, &res… in PHP_FUNCTION()
1611 ZVAL_STRINGL(&tmp, buf, result->longreadlen); in PHP_FUNCTION()
1830 if (result->longreadlen <= 0) { in PHP_FUNCTION()
1833 fieldsize = result->longreadlen; in PHP_FUNCTION()
1842 fieldsize = (result->longreadlen <= 0) ? 4096 : result->longreadlen; in PHP_FUNCTION()
2016 result->longreadlen <= 0) { in PHP_FUNCTION()
2022 buf = emalloc(result->longreadlen); in PHP_FUNCTION()
2025 …rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1),sql_c_type, buf, result->longreadlen, &result-… in PHP_FUNCTION()
2042 PHPWRITE(buf, result->longreadlen); in PHP_FUNCTION()