/PHP-8.2/ext/pdo_mysql/tests/ |
H A D | bug_38546.phpt | 2 PDO MySQL Bug #38546 (bindParam incorrect processing of bool types) 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); 150 $st->bindParam(4, $values['uid'], PDO::PARAM_INT); [all …]
|
H A D | pecl_bug_5802.phpt | 2 PDO MySQL PECL Bug #5802 (bindParam/bindValue retain the is_null flag) 21 $stmt->bindParam(':bar', $bar); 25 $stmt->bindParam(':bar', $bar); 29 $stmt->bindParam(':bar', $bar);
|
H A D | bug_44707.phpt | 2 Bug #44707 (The MySQL PDO driver resets variable content after bindParam on tinyint field) 40 $stmt->bindParam(1, $id); 41 $stmt->bindParam(2, $mybool, PDO::PARAM_BOOL); 51 $stmt->bindParam(1, $id); 53 $stmt->bindParam(2, $mybool, PDO::PARAM_INT);
|
H A D | bug_37445.phpt | 19 $stmt->bindParam(':a', 'b'); 22 Fatal error: Uncaught Error: PDOStatement::bindParam(): Argument #2 ($var) cannot be passed by refe…
|
H A D | pdo_mysql_stmt_blobfromsteam.phpt | 73 $stmt->bindParam(1, $id); 74 if (true !== ($tmp = $stmt->bindParam(2, $fp, PDO::PARAM_LOB))) { 100 $stmt->bindParam(1, $id); 101 $stmt->bindParam(2, $blob);
|
H A D | pdo_mysql_stmt_bindparam.phpt | 2 MySQL PDOStatement->bindParam() 22 if (!$stmt->bindParam(1, $in)) 55 if (!$stmt->bindParam(1, $label))
|
H A D | bug70862.phpt | 33 $stmt->bindParam(":para", $f, PDO::PARAM_LOB);
|
/PHP-8.2/ext/sqlite3/tests/ |
H A D | bug72571.phpt | 2 Bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash) 11 // bindParam crash 13 $stmt->bindParam(0, $i);
|
H A D | bug77051.phpt | 2 Bug #77051 SQLite3::bindParam memory bug when missing ::reset call 14 $stmt->bindParam(':a', $a, SQLITE3_INTEGER);
|
H A D | bug71049.phpt | 14 $stmt->bindParam(1, $foo, SQLITE3_BLOB);
|
H A D | bug45798.phpt | 17 $stmt->bindParam(1, $foo, SQLITE3_TEXT);
|
H A D | sqlite3_blob_bind_resource.phpt | 26 var_dump($insert_stmt->bindParam(1, $f, SQLITE3_BLOB));
|
H A D | sqlite3_36_create_collation.phpt | 16 $stmt->bindParam(1, $s);
|
/PHP-8.2/ext/pdo_oci/tests/ |
H A D | bug60994.phpt | 28 $insert->bindParam(':id', $id, \PDO::PARAM_STR); 35 $insert->bindParam(':data', $string1, \PDO::PARAM_STR, strlen($string1)); // length in bytes 36 $insert->bindParam(':data2', $string1, \PDO::PARAM_STR, strlen($string1)); 38 $select->bindParam(':id', $id, \PDO::PARAM_STR); 55 $insert->bindParam(':data', $string2, \PDO::PARAM_STR, strlen($string2)); // length in bytes 56 $insert->bindParam(':data2', $string2, \PDO::PARAM_STR, strlen($string2)); 58 $select->bindParam(':id', $id, \PDO::PARAM_STR); 76 $insert->bindParam(':data2', $string3, \PDO::PARAM_STR, strlen($string3)); 78 $select->bindParam(':id', $id, \PDO::PARAM_STR); 96 $insert->bindParam(':data2', $string4, \PDO::PARAM_STR, strlen($string4)); [all …]
|
H A D | pecl_bug_6364.phpt | 29 $stmt->bindParam(1, $out_param1,PDO::PARAM_STR, 1024); 30 $stmt->bindParam(2, $out_param2,PDO::PARAM_STR, 1024);
|
H A D | pdo_oci_stream_2.phpt | 31 $stmt->bindParam(':id', $id); 32 $stmt->bindParam(':blob1', $blob1, PDO::PARAM_LOB); 33 $stmt->bindParam(':blob2', $blob2, PDO::PARAM_LOB);
|
H A D | bug57702.phpt | 32 $stmt->bindParam(':id', $id); 33 $stmt->bindParam(':blob1', $blob1, PDO::PARAM_LOB); 34 $stmt->bindParam(':blob2', $blob2, PDO::PARAM_LOB);
|
/PHP-8.2/ext/pdo_pgsql/tests/ |
H A D | bug62593.phpt | 32 // Verify bindParam maintains reference and only passes when execute is called 34 $query->bindParam(':foo', $value, PDO::PARAM_BOOL); 42 $query->bindParam(':foo', $value, PDO::PARAM_BOOL); 48 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
|
/PHP-8.2/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.2/ext/pdo_sqlite/tests/ |
H A D | bug33841.phpt | 13 $stmt->bindParam(':text', $name); 18 $stmt->bindParam(':text', $name);
|
H A D | bug70862.phpt | 28 $stmt->bindParam(":para", $f, PDO::PARAM_LOB);
|
H A D | pdo_sqlite_tostring_exception.phpt | 21 $stmt->bindParam('v', $param2);
|
/PHP-8.2/ext/pdo_firebird/tests/ |
H A D | bug_48877.phpt | 2 PDO_Firebird: bug 48877 The "bindValue" and "bindParam" do not work for PDO Firebird if we use name… 27 $stmt->bindParam(':paramno', $value, PDO::PARAM_STR);
|
/PHP-8.2/ext/pdo/tests/ |
H A D | pdo_024.phpt | 2 PDO Common: assert that bindParam does not modify parameter 33 $stmt->bindParam(':name', $name, PDO::PARAM_NULL);
|
/PHP-8.2/ext/pdo/ |
H A D | pdo_stmt.stub.php | 14 …public function bindParam(string|int $param, mixed &$var, int $type = PDO::PARAM_STR, int $maxLeng… function in PDOStatement
|