/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | bug_38546.phpt | 41 $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 D | pdo_mysql_stmt_getcolumnmeta.phpt | 143 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 D | pdo_mysql_stmt_bindvalue.phpt | 33 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 D | pdo_mysql_stmt_bindcolumn.phpt | 26 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 66 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
|
H A D | pdo_mysql_stmt_bindparam.phpt | 29 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT)) 68 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
|
H A D | pdo_mysql_stmt_closecursor_empty.phpt | 35 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
|
H A D | bug_44707.phpt | 53 $stmt->bindParam(2, $mybool, PDO::PARAM_INT);
|
H A D | pdo_mysql_stmt_blobs.phpt | 43 $stmt->bindColumn(1, $id, PDO::PARAM_INT);
|
H A D | pdo_mysql_stmt_closecursor.phpt | 89 if (!$stmt->bindColumn(1, $id, PDO::PARAM_INT))
|
/PHP-8.3/ext/pdo_sqlite/tests/ |
H A D | bug_63916-2.phpt | 2 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 D | bug_63916.phpt | 2 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 D | debugdumpparams_001.phpt | 11 $x->bindValue(':a', 1, PDO::PARAM_INT);
|
/PHP-8.3/ext/pdo_firebird/tests/ |
H A D | bug_77863.phpt | 86 // 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 D | bug43925.phpt | 43 $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 D | bug36727.phpt | 19 var_dump($stmt->bindValue(':test', 1, PDO::PARAM_INT));
|
H A D | pg_debug_emulated_prepares.phpt | 20 $stmt->bindValue(':int', 123, PDO::PARAM_INT);
|
/PHP-8.3/ext/pdo_odbc/tests/ |
H A D | bug44643.phpt | 17 $stmt->bindParam(':id1', $id1, PDO::PARAM_INT); 19 $stmt->bindParam(':id2', $id2, PDO::PARAM_INT);
|
/PHP-8.3/ext/pdo/tests/ |
H A D | bug_39398.phpt | 22 $stmt->bindValue(':boolean', isset($boolean), PDO::PARAM_INT);
|
H A D | bug_39656.phpt | 26 $stmt->bindValue(1, 1, PDO::PARAM_INT );
|
H A D | bug_65946.phpt | 39 $stmt->bindValue('limit', 1, PDO::PARAM_INT);
|
H A D | debug_emulated_prepares.phpt | 31 $stmt->bindValue(':int', 123, PDO::PARAM_INT);
|
/PHP-8.3/ext/pdo_dblib/tests/ |
H A D | pdo_dblib_quote.phpt | 14 var_dump($db->quote(42, PDO::PARAM_INT));
|
/PHP-8.3/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_call_timeout.phpt | 36 $stmt->bindParam(":t", $t, PDO::PARAM_INT);
|
/PHP-8.3/ext/pdo/ |
H A D | pdo_dbh.stub.php | 22 public const PARAM_INT = 1; define in PDO
|