Searched refs:odbc_result (Results 1 – 15 of 15) sorted by relevance
/php-src/ext/odbc/tests/ |
H A D | bug68087.phpt | 24 $id = odbc_result($res, "ID"); 25 $varchar_col = odbc_result($res, "VARCHAR_COL"); 26 $date = odbc_result($res, "DATE_COL");
|
H A D | odbc_fetch_row_001.phpt | 23 var_dump(odbc_result($res, 'test')); 26 var_dump(odbc_result($res, 'test')); 29 var_dump(odbc_result($res, 'test'));
|
H A D | bug60616.phpt | 45 $char_col = odbc_result($res, "CHAR_COL"); 46 $varchar_col = odbc_result($res, "VARCHAR_COL"); 47 $id = odbc_result($res, "ID"); 49 while (($chunk=odbc_result($res, "TEXT_COL")) !== false) {
|
H A D | odbc_free_result_001.phpt | 26 var_dump(odbc_result($res, 'test')); 46 var_dump(odbc_result($res, 'test'));
|
H A D | bug44618.phpt | 32 var_dump(odbc_result($result, "text1")); 66 Warning: odbc_result(): Cannot get data of column #3 (retcode 100) in %s on line %d
|
H A D | odbc_commit_001.phpt | 20 var_dump(odbc_result($res, "test"));
|
H A D | odbc_rollback_001.phpt | 20 var_dump(odbc_result($res, "test"));
|
H A D | odbc_exec_002.phpt | 20 var_dump(odbc_result($res, 'test'));
|
H A D | odbc_longreadlen_001.phpt | 19 var_dump(odbc_result($res, 'whatever'));
|
H A D | bug80147.phpt | 19 var_dump(odbc_result($res, 'whatever'));
|
H A D | bug69354.phpt | 21 $ret = odbc_result($res,'varchar_col');
|
/php-src/ext/odbc/ |
H A D | php_odbc_includes.h | 218 typedef struct odbc_result { struct 233 } odbc_result; typedef 256 int odbc_add_result(HashTable *list, odbc_result *result); 257 odbc_result *odbc_get_result(HashTable *list, int count); 262 void odbc_bindcols(odbc_result *result);
|
H A D | php_odbc.c | 209 return (odbc_result *)((char *)(obj) - XtOffsetOf(odbc_result, std)); in odbc_result_from_obj() 214 odbc_result *intern = zend_object_alloc(sizeof(odbc_result), class_type); in odbc_result_create_object() 644 odbc_result *result; in php_odbc_fetch_attribs() 811 odbc_result *result; in odbc_column_lengths() 1020 odbc_result *result; in PHP_FUNCTION() 1177 odbc_result *result; in PHP_FUNCTION() 1370 odbc_result *result; in php_odbc_fetch_hash() 1536 odbc_result *result; in PHP_FUNCTION() 1674 odbc_result *result; in PHP_FUNCTION() 1748 odbc_result *result; in PHP_FUNCTION() [all …]
|
H A D | odbc_arginfo.h | 266 ZEND_FUNCTION(odbc_result); 325 ZEND_FE(odbc_result, arginfo_odbc_result)
|
H A D | odbc.stub.php | 369 function odbc_result(Odbc\Result $statement, string|int $field): string|bool|null {} function
|
Completed in 32 milliseconds