Home
last modified time | relevance | path

Searched refs:placeholder (Results 1 – 20 of 20) sorted by relevance

/PHP-8.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_emulated.phpt125 array(':placeholder' => 'id'));
127 array(':placeholder' => 'id'));
128 prepex(18, $db, 'SELECT :placeholder FROM test WHERE :placeholder > :placeholder',
141 prepex(21, $db, 'INSERT INTO test(id, label) VALUES (1, :placeholder), (2, :placeholder)',
142 array(':placeholder' => 'row'));
147 array(':placeholder' => 1));
152 array(':placeholder' => 1));
172 prepex(35, $db, 'INSERT INTO test(id, label) VALUES (1, :placeholder), (2, :placeholder)',
176 array(':placeholder' => 'row'),
180 array(':placeholder' => 'row'),
[all …]
H A Dpdo_mysql_prepare_native_column.phpt2 MySQL PDO->prepare(), native PS, named placeholder
25 $db->prepare('SELECT :placeholder FROM test WHERE :placeholder > :placeholder');
26 $stmt->execute(array(':placeholder' => 'test'));
H A Dpdo_mysql_prepare_native_dup_named_placeholder.phpt2 MySQL PDO->prepare(), native PS, named placeholder II
28 …stmt = $db->prepare('INSERT INTO test(id, label1, label2) VALUES (1, :placeholder, :placeholder)');
30 $stmt->execute(array(':placeholder' => 'row1'));
47 …$stmt = $db->prepare('INSERT INTO test(id, label1, label2) VALUES(2, :placeholder, :placeholder)');
49 $stmt->execute(array(':placeholder' => 'row2'));
66 … id, label1 FROM test WHERE id = :placeholder AND label1 = (SELECT label1 AS 'SELECT' FROM test WH…
70 $stmt->execute(array(':placeholder' => 1));
84 $stmt->execute(array(':placeholder' => 1));
H A Dpdo_mysql_prepare_native_named_placeholder.phpt2 MySQL PDO->prepare(), native PS, named placeholder
26 $stmt = $db->prepare("INSERT INTO test(id, label) VALUES (100, ':placeholder')");
28 // Yes, there is no placeholder to bind to and named placeholder
30 // The ':placeholder' is a string constant in the INSERT statement.
32 $stmt->execute(array(':placeholder' => 'row1'));
48 // Note that the "named placeholder" is enclosed by double quotes.
49 $stmt = $db->prepare("INSERT INTO test(id, label) VALUES(101, ':placeholder')");
51 $stmt->execute(array(':placeholder' => 'row1'));
H A Dpdo_mysql_prepare_native.phpt131 array(':placeholder' => 'first row'));
133 array(':placeholder' => 'second row'));
139 array(':placeholder' => 'id'));
143 $params = array(':placeholder' => 'a');
152 array(':placeholder' => 1));
157 array(':placeholder' => 1));
170 array(':placeholder' => 'mysql'), null, true);
194 $stmt = prepex(29, $db, $sql, array('placeholder' => -1));
200 $stmt = prepex(31, $db, $sql, array('placeholder' => 1));
296 array(':placeholder' => 'row'),
[all …]
H A Dpdo_mysql_prepare_native_clear_error.phpt30 … $stmt = $db->prepare('SELECT unknown_column FROM test WHERE id > :placeholder ORDER BY id ASC');
31 $stmt->execute(array(':placeholder' => 0));
37 $stmt = $db->prepare('SELECT id, label FROM test WHERE id > :placeholder ORDER BY id ASC');
38 $stmt->execute(array(':placeholder' => 0));
50 … $stmt = $db->prepare('SELECT unknown_column FROM test WHERE id > :placeholder ORDER BY id ASC');
51 $stmt->execute(array(':placeholder' => 0));
57 $stmt = $db->prepare('SELECT id, label FROM test WHERE id > :placeholder ORDER BY id ASC');
58 $stmt->execute(array(':placeholder' => 0));
H A Dpdo_mysql_prepare_match_against.phpt21 $stmt = $db->prepare('SELECT id, label FROM test WHERE MATCH label AGAINST (:placeholder)');
22 $stmt->execute(array(':placeholder' => 'row'));
25 $stmt = $db->prepare('SELECT id, label FROM test WHERE MATCH label AGAINST (:placeholder)');
26 $stmt->execute(array('placeholder' => 'row'));
H A Dbug_61755.phpt19 echo "NULL-Byte before first placeholder:\n";
37 NULL-Byte before first placeholder:
H A Dpdo_mysql_prepare_emulated_placeholder_everywhere.phpt2 MySQL PDO->prepare(), emulated PS, anonymous placeholder
26 // So, what will happen? More placeholder but values and
H A Dpdo_mysql_prepare_native_mixed_style.phpt24 …$stmt = $db->prepare("SELECT id, label FROM test WHERE id = :placeholder AND label = (SELECT label…
H A Dpdo_mysql_prepare_native_placeholder_everywhere.phpt2 MySQL PDO->prepare(),native PS, anonymous placeholder
H A Dpdo_mysql_prepare_emulated_anonymous.phpt2 MySQL PDO->prepare(), emulated PS, anonymous placeholder
/PHP-8.2/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml29 placeholder: "PHP 8.0.12"
36 placeholder: "Ubuntu 20.04"
/PHP-8.2/ext/pdo/tests/
H A Dbug_71447.phpt34 // Comment and placeholder within a string
74 // Comment with ? placeholder
85 // Comment with named placeholder
/PHP-8.2/ext/intl/tests/
H A Dbug74484_MessageFormatter.phpt2 Bug #74484 MessageFormatter::formatMessage memory corruption with 11+ named placeholder
/PHP-8.2/ext/pdo_pgsql/tests/
H A Dbug71885.phpt2 Request #71855 (PDO placeholder escaping)
H A Dbug71885_2.phpt2 Request #71855 (PDO placeholder escaping, part 2)
/PHP-8.2/ext/oci8/
H A Doci8.c1630 zval *placeholder = (zval*) NULL; in php_oci_fetch_row() local
1656 placeholder = Z_REFVAL_P(array); in php_oci_fetch_row()
1658 placeholder = array; in php_oci_fetch_row()
1751 if (placeholder == NULL) { in php_oci_fetch_row()
1752 placeholder = return_value; in php_oci_fetch_row()
1754 zval_ptr_dtor(placeholder); in php_oci_fetch_row()
1757 array_init(placeholder); in php_oci_fetch_row()
1776 add_index_zval(placeholder, i, &element); in php_oci_fetch_row()
1782 add_assoc_zval(placeholder, column->name, &element); in php_oci_fetch_row()
1787 add_index_null(placeholder, i); in php_oci_fetch_row()
[all …]
/PHP-8.2/ext/pdo/
H A Dpdo_sql_parser.re70 struct placeholder {
75 struct placeholder *next;
93 struct placeholder *placeholders = NULL, *placetail = NULL, *plc = NULL;
/PHP-8.2/
H A D.gitignore249 # Temporary POST data placeholder files generated by `./run-tests.php`

Completed in 27 milliseconds