Lines Matching refs:longreadlen
657 result->longreadlen = flag; in php_odbc_fetch_attribs()
678 result->longreadlen = ODBCG(defaultlrl); in odbc_bindcols()
1453 if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { in php_odbc_fetch_hash()
1458 buf = emalloc(result->longreadlen + 1); in php_odbc_fetch_hash()
1461 …rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1), sql_c_type, buf, result->longreadlen + 1, &re… in php_odbc_fetch_hash()
1470 ZVAL_STRINGL(&tmp, buf, result->longreadlen); in php_odbc_fetch_hash()
1622 if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { in PHP_FUNCTION()
1628 buf = emalloc(result->longreadlen + 1); in PHP_FUNCTION()
1630 …rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1),sql_c_type, buf, result->longreadlen + 1, &res… in PHP_FUNCTION()
1638 ZVAL_STRINGL(&tmp, buf, result->longreadlen); 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()
2041 …rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1),sql_c_type, buf, result->longreadlen, &result-… in PHP_FUNCTION()
2058 PHPWRITE(buf, result->longreadlen); in PHP_FUNCTION()