Searched refs:PARAM_BOOL (Results 1 – 9 of 9) sorted by relevance
/PHP-8.3/ext/pdo_pgsql/tests/ |
H A D | bug62593.phpt | 2 PDO PgSQL Bug #62593 (Emulate prepares behave strangely with PARAM_BOOL) 23 $query->bindValue(':foo', $value, PDO::PARAM_BOOL); 28 $query->bindValue(':foo', 0, PDO::PARAM_BOOL); 34 $query->bindParam(':foo', $value, PDO::PARAM_BOOL); 42 $query->bindParam(':foo', $value, PDO::PARAM_BOOL); 48 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
|
H A D | bug_33876.phpt | 26 $res->bindValue(1, false, PDO::PARAM_BOOL); 33 $res->bindValue(1, true, PDO::PARAM_BOOL); 62 $res->bindValue(1, false, PDO::PARAM_BOOL); 69 $res->bindValue(1, true, PDO::PARAM_BOOL);
|
H A D | pg_debug_emulated_prepares.phpt | 19 $stmt->bindValue(':bool', true, PDO::PARAM_BOOL);
|
/PHP-8.3/ext/pdo_firebird/tests/ |
H A D | bug_77863.phpt | 28 // PDO::PARAM_BOOL 29 $query->bindValue('p', 0, PDO::PARAM_BOOL); 33 $query->bindValue('p', 1, PDO::PARAM_BOOL); 37 $query->bindValue('p', false, PDO::PARAM_BOOL); 41 $query->bindValue('p', true, PDO::PARAM_BOOL); 45 $query->bindValue('p', 'false', PDO::PARAM_BOOL); 49 $query->bindValue('p', 'True', PDO::PARAM_BOOL); 53 $query->bindValue('p', null, PDO::PARAM_BOOL);
|
/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | bug_38546.phpt | 42 $st->bindParam(2, $values['some_bool_1'], PDO::PARAM_BOOL); 43 $st->bindParam(3, $values['some_bool_2'], PDO::PARAM_BOOL); 67 $st->bindParam(1, $values['some_bool_1'], PDO::PARAM_BOOL); 68 $st->bindParam(2, $values['some_bool_2'], PDO::PARAM_BOOL); 93 $st->bindParam(1, $values['some_bool_1'], PDO::PARAM_BOOL); 94 $st->bindParam(2, $values['some_bool_2'], PDO::PARAM_BOOL); 120 $st->bindParam(1, $values['some_bool_1'], PDO::PARAM_BOOL); 121 $st->bindParam(2, $values['some_bool_2'], PDO::PARAM_BOOL); 147 $st->bindParam(1, $values['some_bool_1'], PDO::PARAM_BOOL); 148 $st->bindParam(2, $values['some_bool_2'], PDO::PARAM_BOOL); [all …]
|
H A D | bug_44707.phpt | 41 $stmt->bindParam(2, $mybool, PDO::PARAM_BOOL);
|
/PHP-8.3/ext/pdo_dblib/tests/ |
H A D | pdo_dblib_quote.phpt | 12 var_dump($db->quote(true, PDO::PARAM_BOOL)); 13 var_dump($db->quote(false, PDO::PARAM_BOOL));
|
/PHP-8.3/ext/pdo/tests/ |
H A D | debug_emulated_prepares.phpt | 30 $stmt->bindValue(':bool', true, PDO::PARAM_BOOL);
|
/PHP-8.3/ext/pdo/ |
H A D | pdo_dbh.stub.php | 17 public const PARAM_BOOL = 5; define in PDO
|
Completed in 12 milliseconds