Searched refs:odbc_result (Results 1 – 11 of 11) sorted by relevance
/PHP-8.0/ext/odbc/ |
H A D | php_odbc.c | 98 odbc_result *res = (odbc_result *)rsrc->ptr; in ZEND_GET_MODULE() 881 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 1283 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 2748 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 2816 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 2887 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 2964 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 3031 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 3089 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() 3152 result = (odbc_result *)ecalloc(1, sizeof(odbc_result)); in PHP_FUNCTION() [all …]
|
H A D | php_odbc_includes.h | 206 typedef struct odbc_result { struct 219 } odbc_result; argument 241 int odbc_add_result(HashTable *list, odbc_result *result); 242 odbc_result *odbc_get_result(HashTable *list, int count); 247 int odbc_bindcols(odbc_result *result);
|
H A D | odbc_arginfo.h | 267 ZEND_FUNCTION(odbc_result); 332 ZEND_FE(odbc_result, arginfo_odbc_result)
|
H A D | odbc.stub.php | 61 function odbc_result($statement, string|int $field): string|bool|null {} function
|
/PHP-8.0/ext/odbc/tests/ |
H A D | bug60616.phpt | 34 $char_col = odbc_result($res, "CHAR_COL"); 35 $varchar_col = odbc_result($res, "VARCHAR_COL"); 36 $id = odbc_result($res, "ID"); 38 while (($chunk=odbc_result($res, "TEXT_COL")) !== false) {
|
H A D | bug68087.phpt | 25 $id = odbc_result($res, "ID"); 26 $varchar_col = odbc_result($res, "VARCHAR_COL"); 27 $date = odbc_result($res, "DATE_COL");
|
H A D | odbc_free_result_001.phpt | 23 var_dump(odbc_result($res, 'test')); 36 var_dump(odbc_result($res, 'test')); 54 odbc_result(): supplied resource is not a valid ODBC result resource
|
H A D | bug44618.phpt | 24 var_dump(odbc_result($result, "text1")); 58 Warning: odbc_result(): Cannot get data of column #3 (retcode 100) in %s on line %d
|
H A D | bug80147.phpt | 17 var_dump(odbc_result($res, 'whatever'));
|
H A D | odbc_exec_002.phpt | 22 var_dump(odbc_result($res, 'test'));
|
H A D | bug69354.phpt | 21 $ret = odbc_result($res,'varchar_col');
|
Completed in 49 milliseconds