Searched defs:columns (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_4/ext/oci8/ |
| H A D | oci8_interface.c | 1396 php_oci_out_column **columns; local 1418 columns = safe_emalloc(statement->ncolumns, sizeof(php_oci_out_column *), 0); 1421 columns[ i ] = php_oci_statement_get_column(statement, i + 1, NULL, 0 TSRMLS_CC); 1432 php_oci_column_to_zval(columns[ i ], element, PHP_OCI_RETURN_LOBS TSRMLS_CC); 1439 zend_symtable_update(Z_ARRVAL_P(row), columns[ i ]->name, columns[ i ]->name_len+1, &element, sizeof(zval*), NULL); 1442 zend_hash_update(Z_ARRVAL_P(row), columns[ i ]->name, columns[ i ]->name_len+1, &element, sizeof(zval*), NULL); 1455 efree(columns); 1458 columns [all...] |
| H A D | php_oci8_int.h | 196 HashTable *columns; /* hash containing all the result columns */ member in struct:__anon135 199 int ncolumns; /* number of columns in the result */
|
| /PHP_5_4/ext/pdo/ |
| H A D | php_pdo_driver.h | 92 PDO_FETCH_BOUND, /* return true/false only; rely on bound columns */ 98 PDO_FETCH_KEY_PAIR, /* fetch into an array where the 1st column is a key and all subsequent columns are values */ 333 * Driver should populate stmt->columns[colno] with appropriate info */ 394 * If it returns 1, PDO will tear down its idea of columns 457 * the columns that are returned */ 565 /* the number of columns in the result set; not valid until after 570 struct pdo_column_data *columns; member in struct:_pdo_stmt_t 581 /* keep track of PHP variables bound to named (or positional) columns
|
Completed in 8 milliseconds