/php-src/ext/pdo_mysql/tests/ |
H A D | bug_38546.phpt | 2 PDO MySQL Bug #38546 (bindParam incorrect processing of bool types) 36 $st->bindParam(1, $values['uid'], PDO::PARAM_INT); 39 $st->bindParam(4, $values['some_int'], PDO::PARAM_INT); 64 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT); 65 $st->bindParam(4, $values['uid'], PDO::PARAM_INT); 90 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT); 91 $st->bindParam(4, $values['uid'], PDO::PARAM_INT); 117 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT); 118 $st->bindParam(4, $values['uid'], PDO::PARAM_INT); 145 $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) 19 $stmt->bindParam(':bar', $bar); 23 $stmt->bindParam(':bar', $bar); 27 $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) 24 $stmt->bindParam(1, $id); 25 $stmt->bindParam(2, $mybool, PDO::PARAM_BOOL); 35 $stmt->bindParam(1, $id); 37 $stmt->bindParam(2, $mybool, PDO::PARAM_INT);
|
H A D | bug_37445.phpt | 17 $stmt->bindParam(':a', 'b'); 20 Fatal error: Uncaught Error: PDOStatement::bindParam(): Argument #2 ($var) could not be passed by r…
|
H A D | pdo_mysql_stmt_blobfromstream.phpt | 72 $stmt->bindParam(1, $id); 73 if (true !== ($tmp = $stmt->bindParam(2, $fp, PDO::PARAM_LOB))) { 99 $stmt->bindParam(1, $id); 100 $stmt->bindParam(2, $blob);
|
H A D | bug70862.phpt | 32 $stmt->bindParam(":para", $f, PDO::PARAM_LOB);
|
H A D | pdo_mysql_stmt_bindparam.phpt | 2 MySQL PDOStatement->bindParam() 24 if (!$stmt->bindParam(1, $in)) 57 if (!$stmt->bindParam(1, $label))
|
/php-src/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);
|
H A D | sqlite3_06_prepared_stmt.phpt | 22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
|
H A D | sqlite3_trampoline_create_collation.phpt | 25 $stmt->bindParam(1, $s);
|
H A D | sqlite3_26_reset_prepared_stmt.phpt | 22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | bug62593.phpt | 31 // Verify bindParam maintains reference and only passes when execute is called 33 $query->bindParam(':foo', $value, PDO::PARAM_BOOL); 41 $query->bindParam(':foo', $value, PDO::PARAM_BOOL); 47 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
|
/php-src/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-src/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-src/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… 26 $stmt->bindParam(':paramno', $value, PDO::PARAM_STR);
|
/php-src/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-src/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
|
H A D | pdo_stmt_arginfo.h | 91 ZEND_METHOD(PDOStatement, bindParam); 113 ZEND_ME(PDOStatement, bindParam, arginfo_class_PDOStatement_bindParam, ZEND_ACC_PUBLIC)
|