Home
last modified time | relevance | path

Searched refs:PARAM_INT (Results 1 – 24 of 24) sorted by relevance

/PHP-8.3/ext/pdo_mysql/tests/
H A Dbug_38546.phpt41 $st->bindParam(1, $values['uid'], PDO::PARAM_INT);
44 $st->bindParam(4, $values['some_int'], PDO::PARAM_INT);
69 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
70 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
95 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
96 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
122 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
123 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
149 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
150 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
[all …]
H A Dpdo_mysql_stmt_getcolumnmeta.phpt143 test_meta($db, 20, 'BIT(8)', 1, 'BIT', PDO::PARAM_INT);
144 test_meta($db, 30, 'TINYINT', -127, 'TINY', PDO::PARAM_INT);
145 test_meta($db, 40, 'TINYINT UNSIGNED', 255, 'TINY', PDO::PARAM_INT);
146 test_meta($db, 50, 'BOOLEAN', 1, NULL, PDO::PARAM_INT);
148 test_meta($db, 60, 'SMALLINT', -32768, 'SHORT', PDO::PARAM_INT);
149 test_meta($db, 70, 'SMALLINT UNSIGNED', 65535, 'SHORT', PDO::PARAM_INT);
151 test_meta($db, 80, 'MEDIUMINT', -8388608, 'INT24', PDO::PARAM_INT);
152 test_meta($db, 90, 'MEDIUMINT UNSIGNED', 16777215, 'INT24', PDO::PARAM_INT);
154 test_meta($db, 100, 'INT', -2147483648, 'LONG', PDO::PARAM_INT);
155 test_meta($db, 110, 'INT UNSIGNED', 4294967295, 'LONG', PDO::PARAM_INT);
[all …]
H A Dpdo_mysql_stmt_bindvalue.phpt33 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
55 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
79 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
108 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
138 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
173 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
195 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
219 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
248 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
278 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
H A Dpdo_mysql_stmt_bindcolumn.phpt26 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
66 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
H A Dpdo_mysql_stmt_bindparam.phpt29 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
68 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
H A Dpdo_mysql_stmt_closecursor_empty.phpt35 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
H A Dbug_44707.phpt53 $stmt->bindParam(2, $mybool, PDO::PARAM_INT);
H A Dpdo_mysql_stmt_blobs.phpt43 $stmt->bindColumn(1, $id, PDO::PARAM_INT);
H A Dpdo_mysql_stmt_closecursor.phpt89 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
/PHP-8.3/ext/pdo_sqlite/tests/
H A Dbug_63916-2.phpt2 Bug #63916 PDO::PARAM_INT casts to 32bit int internally even on 64bit builds in pdo_sqlite
16 $stmt->bindValue(':id', 1, PDO::PARAM_INT);
17 $stmt->bindValue(':num', $num, PDO::PARAM_INT);
H A Dbug_63916.phpt2 Bug #63916 PDO::PARAM_INT casts to 32bit int internally even on 64bit builds in pdo_sqlite
16 $stmt->bindValue(':id', 1, PDO::PARAM_INT);
17 $stmt->bindValue(':num', $num, PDO::PARAM_INT);
H A Ddebugdumpparams_001.phpt11 $x->bindValue(':a', 1, PDO::PARAM_INT);
/PHP-8.3/ext/pdo_firebird/tests/
H A Dbug_77863.phpt86 // PDO::PARAM_INT
87 $query->bindValue('p', false, PDO::PARAM_INT);
91 $query->bindValue('p', true, PDO::PARAM_INT);
95 $query->bindValue('p', 0, PDO::PARAM_INT);
99 $query->bindValue('p', 1, PDO::PARAM_INT);
103 $query->bindValue('p', 'false', PDO::PARAM_INT);
107 $query->bindValue('p', 'true', PDO::PARAM_INT);
/PHP-8.3/ext/pdo_pgsql/tests/
H A Dbug43925.phpt43 $stmt->bindValue('left', 1, PDO::PARAM_INT);
44 $stmt->bindValue('rootId', 3, PDO::PARAM_INT);
45 $stmt->bindValue('x', 5, PDO::PARAM_INT);
46 $stmt->bindValue('y', 50, PDO::PARAM_INT);
H A Dbug36727.phpt19 var_dump($stmt->bindValue(':test', 1, PDO::PARAM_INT));
H A Dpg_debug_emulated_prepares.phpt20 $stmt->bindValue(':int', 123, PDO::PARAM_INT);
/PHP-8.3/ext/pdo_odbc/tests/
H A Dbug44643.phpt17 $stmt->bindParam(':id1', $id1, PDO::PARAM_INT);
19 $stmt->bindParam(':id2', $id2, PDO::PARAM_INT);
/PHP-8.3/ext/pdo/tests/
H A Dbug_39398.phpt22 $stmt->bindValue(':boolean', isset($boolean), PDO::PARAM_INT);
H A Dbug_39656.phpt26 $stmt->bindValue(1, 1, PDO::PARAM_INT );
H A Dbug_65946.phpt39 $stmt->bindValue('limit', 1, PDO::PARAM_INT);
H A Ddebug_emulated_prepares.phpt31 $stmt->bindValue(':int', 123, PDO::PARAM_INT);
/PHP-8.3/ext/pdo_dblib/tests/
H A Dpdo_dblib_quote.phpt14 var_dump($db->quote(42, PDO::PARAM_INT));
/PHP-8.3/ext/pdo_oci/tests/
H A Dpdo_oci_attr_call_timeout.phpt36 $stmt->bindParam(":t", $t, PDO::PARAM_INT);
/PHP-8.3/ext/pdo/
H A Dpdo_dbh.stub.php22 public const PARAM_INT = 1; define in PDO

Completed in 27 milliseconds