Home
last modified time | relevance | path

Searched refs:columns (Results 1 – 25 of 48) sorted by path

12

/PHP-5.5/
H A DNEWS36 . Fixed bug #69975 (PHP segfaults when accessing nvarchar(max) defined columns)
4944 - Fixed very rare memory leak in mysqlnd, when binding thousands of columns.
6002 to control formatting of date/timestamp columns: PDO::FB_ATTR_DATE_FORMAT,
8363 - Fixed bug #38458, PECL bug #8944, PECL bug #7775 (error retrieving columns
8364 after long/text columns with PDO_ODBC). (Wez)
9830 - Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic1328 # a file has a tab stop set in the first four columns this will fail.
15744 # The PDB file format is fixed-field, 80 columns. From the spec:
/PHP-5.5/ext/mysql/tests/
H A Dmysql_fetch_array.phpt127 …printf("[%04d] SQL Type: '%s', binary columns are supposed to return binary string and not unicode…
H A Dmysql_field_flags.phpt95 foreach ($tables as $columns => $expected) {
97 printf("[010/%s] [%d] %s\n", $columns, mysql_errno($link), mysql_error($link));
100 $sql = sprintf("CREATE TABLE test(id INT, %s) ENGINE = %s", $columns, $engine);
110 printf("[011/%s] '%s', [%d] %s\n", $columns, $sql, mysql_errno($link), mysql_error($link));
115 printf("[012/%s] [%d] %s\n", $columns, mysql_errno($link), mysql_error($link));
125 …printf("[013/%s] Field '%s', flag '%s' not found, [%d] %s\n", $columns, $field, $flag, mysql_errno…
132 …printf("[014/%s] Field '%s', unexpected flags '%s' found, [%d] %s\n", $columns, $field, $tmp, mysq…
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_explain_metadata.phpt60 printf("[007] Field descriptions missing for the following columns\n");
H A Dmysqli_fetch_array.phpt132 …printf("[%04d] SQL Type: '%s', binary columns are supposed to return binary string and not unicode…
H A Dmysqli_fetch_field_flags.phpt52 $columns = array(
110 $columns['TIMESTAMP NOT NULL'] = 'ON_UPDATE_NOW TIMESTAMP BINARY NOT_NULL';
113 foreach ($columns as $column_def => $expected_flags) {
H A Dmysqli_stmt_bind_limits.phpt18 $columns = "";
24 $columns .= "col" . $i . ", ";
35 $insert .= "(" . substr($columns, 0, -2) . ") VALUES ";
40 printf("Testing %d columns with %d rows...\n", $num_params, $rows);
119 Testing 273 columns with 240 rows...
124 Testing 273 columns with 240 rows...
H A Dmysqli_stmt_bind_param_many_columns.phpt2 mysqli_stmt_bind_param() - Binding with very high number of columns
H A Dmysqli_stmt_bind_param_type_juggling.phpt98 /* now, let's have two columns of different type and do type juggling */
H A Dmysqli_stmt_get_result_metadata_fetch_field.phpt46 All of the following columns are "too hot" - too server dependent
/PHP-5.5/ext/oci8/
H A Doci8_interface.c1396 php_oci_out_column **columns; local
1418 columns = safe_emalloc(statement->ncolumns, sizeof(php_oci_out_column *), 0);
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, size…
1442 …zend_hash_update(Z_ARRVAL_P(row), columns[ i ]->name, columns[ i ]->name_len+1, &element, sizeof(z…
1455 efree(columns);
1458 columns = safe_emalloc(statement->ncolumns, sizeof(php_oci_out_column *), 0);
1477 …zend_symtable_update(Z_ARRVAL_P(array), columns[ i ]->name, columns[ i ]->name_len+1, (void *) &tm…
1480 …zend_hash_update(Z_ARRVAL_P(array), columns[ i ]->name, columns[ i ]->name_len+1, (void *) &tmp, s…
1488 php_oci_column_to_zval(columns[ i ], element, PHP_OCI_RETURN_LOBS TSRMLS_CC);
[all …]
H A Doci8_statement.c181 if (statement->has_descr && statement->columns) { in php_oci_statement_fetch()
190 if (statement->columns) { in php_oci_statement_fetch()
191 zend_hash_destroy(statement->columns); in php_oci_statement_fetch()
192 efree(statement->columns); in php_oci_statement_fetch()
193 statement->columns = NULL; in php_oci_statement_fetch()
484 ALLOC_HASHTABLE(statement->columns); in php_oci_statement_execute()
485 zend_hash_init(statement->columns, 13, NULL, php_oci_column_hash_dtor, 0); in php_oci_statement_execute()
504 efree(statement->columns); in php_oci_statement_execute()
782 if (statement->columns) { in php_oci_statement_free()
783 zend_hash_destroy(statement->columns); in php_oci_statement_free()
[all …]
H A Dphp_oci8_int.h196 HashTable *columns; /* hash containing all the result columns */ member
/PHP-5.5/ext/oci8/tests/
H A Ddefine4.phpt2 oci_define_by_name() on partial number of columns
25 // Only one of the two columns is defined
/PHP-5.5/ext/odbc/tests/
H A Dbug69975.phpt2 Bug #69975 (PHP segfaults when accessing nvarchar(max) defined columns)
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c218 char *s = stmt->columns[col].name; in pdo_stmt_describe_columns()
554 col = &stmt->columns[colno]; in fetch_value()
1121 stmt->columns[i].name, stmt->columns[i].namelen, in do_fetch()
1129 stmt->columns[i].name, stmt->columns[i].namelen, in do_fetch()
1853 col = &stmt->columns[colno]; in PHP_METHOD()
2060 if (stmt->columns) { in pdo_stmt_do_next_rowset()
2067 efree(stmt->columns); in pdo_stmt_do_next_rowset()
2068 stmt->columns = NULL; in pdo_stmt_do_next_rowset()
2385 if (stmt->columns) { in free_statement()
2395 efree(stmt->columns); in free_statement()
[all …]
H A Dphp_pdo_driver.h570 struct pdo_column_data *columns; member
/PHP-5.5/ext/pdo/tests/
H A Dpdo_020.phpt26 echo "Counted $res columns after $sql.\n";
32 Counted 2 columns after SELECT id, val FROM test.
33 Counted 3 columns after SELECT id, val, val2 FROM test.
34 Counted 1 columns after SELECT COUNT(*) FROM test.
H A Dpdo_032.phpt22 // Lower case columns
29 // Upper case columns
H A Dpdo_034.phpt47 …:FETCH_KEY_PAIR fetch mode requires the result set to contain extactly 2 columns. in %spdo_034.php…
/PHP-5.5/ext/pdo_dblib/
H A Ddblib_stmt.c106 efree(stmt->columns); in pdo_dblib_stmt_cursor_closer()
107 stmt->columns = NULL; in pdo_dblib_stmt_cursor_closer()
116 efree(stmt->columns); in pdo_dblib_stmt_dtor()
117 stmt->columns = NULL; in pdo_dblib_stmt_dtor()
205 struct pdo_column_data *col = &stmt->columns[colno]; in pdo_dblib_stmt_describe()
/PHP-5.5/ext/pdo_dblib/tests/
H A Dbug_45876.phpt12 $stmt = $db->prepare("select ic1.* from information_schema.columns ic1");
H A Dbug_50755.phpt14 from information_schema.columns ic1
15 cross join information_schema.columns ic2
16 cross join information_schema.columns ic3");
/PHP-5.5/ext/pdo_firebird/
H A Dfirebird_statement.c186 struct pdo_column_data *col = &stmt->columns[colno]; in firebird_stmt_describe()

Completed in 143 milliseconds

12