Home
last modified time | relevance | path

Searched refs:bindParam (Results 1 – 25 of 50) sorted by relevance

12

/PHP-8.0/ext/pdo_mysql/tests/
H A Dbug_38546.phpt2 PDO MySQL Bug #38546 (bindParam incorrect processing of bool types)
39 $st->bindParam(1, $values['uid'], PDO::PARAM_INT);
42 $st->bindParam(4, $values['some_int'], PDO::PARAM_INT);
67 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
68 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
93 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
94 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
120 $st->bindParam(3, $values['some_int'], PDO::PARAM_INT);
121 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
148 $st->bindParam(4, $values['uid'], PDO::PARAM_INT);
[all …]
H A Dpecl_bug_5802.phpt2 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 Dbug_44707.phpt2 Bug #44707 (The MySQL PDO driver resets variable content after bindParam on tinyint field)
39 $stmt->bindParam(1, $id);
40 $stmt->bindParam(2, $mybool, PDO::PARAM_BOOL);
50 $stmt->bindParam(1, $id);
52 $stmt->bindParam(2, $mybool, PDO::PARAM_INT);
H A Dbug_37445.phpt17 $stmt->bindParam(':a', 'b');
20 Fatal error: Uncaught Error: PDOStatement::bindParam(): Argument #2 ($var) cannot be passed by refe…
H A Dpdo_mysql_stmt_blobfromsteam.phpt72 $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 Dbug70862.phpt31 $stmt->bindParam(":para", $f, PDO::PARAM_LOB);
H A Dpdo_mysql_stmt_bindparam.phpt2 MySQL PDOStatement->bindParam()
21 if (!$stmt->bindParam(1, $in))
54 if (!$stmt->bindParam(1, $label))
/PHP-8.0/ext/sqlite3/tests/
H A Dbug72571.phpt2 Bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash)
12 // bindParam crash
14 $stmt->bindParam(0, $i);
H A Dbug77051.phpt2 Bug #77051 SQLite3::bindParam memory bug when missing ::reset call
14 $stmt->bindParam(':a', $a, SQLITE3_INTEGER);
H A Dbug71049.phpt15 $stmt->bindParam(1, $foo, SQLITE3_BLOB);
H A Dbug45798.phpt17 $stmt->bindParam(1, $foo, SQLITE3_TEXT);
H A Dsqlite3_blob_bind_resource.phpt25 var_dump($insert_stmt->bindParam(1, $f, SQLITE3_BLOB));
H A Dsqlite3_36_create_collation.phpt16 $stmt->bindParam(1, $s);
/PHP-8.0/ext/pdo_pgsql/tests/
H A Dbug62593.phpt29 // Verify bindParam maintains reference and only passes when execute is called
31 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
39 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
45 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
/PHP-8.0/ext/pdo_oci/tests/
H A Dbug60994.phpt25 $insert->bindParam(':id', $id, \PDO::PARAM_STR);
32 $insert->bindParam(':data', $string1, \PDO::PARAM_STR, strlen($string1)); // length in bytes
34 $select->bindParam(':id', $id, \PDO::PARAM_STR);
49 $insert->bindParam(':data', $string2, \PDO::PARAM_STR, strlen($string2)); // length in bytes
51 $select->bindParam(':id', $id, \PDO::PARAM_STR);
66 $insert->bindParam(':data', $string3, \PDO::PARAM_STR, strlen($string3)); // length in bytes
68 $select->bindParam(':id', $id, \PDO::PARAM_STR);
83 $insert->bindParam(':data', $string4, \PDO::PARAM_STR, strlen($string4)); // length in bytes
85 $select->bindParam(':id', $id, \PDO::PARAM_STR);
H A Dpecl_bug_6364.phpt27 $stmt->bindParam(1, $out_param1,PDO::PARAM_STR, 1024);
28 $stmt->bindParam(2, $out_param2,PDO::PARAM_STR, 1024);
H A Dpdo_oci_stream_2.phpt29 $stmt->bindParam(':id', $id);
30 $stmt->bindParam(':blob1', $blob1, PDO::PARAM_LOB);
31 $stmt->bindParam(':blob2', $blob2, PDO::PARAM_LOB);
/PHP-8.0/ext/pdo_odbc/tests/
H A Dbug44643.phpt16 $stmt->bindParam(':id1', $id1, PDO::PARAM_INT);
18 $stmt->bindParam(':id2', $id2, PDO::PARAM_INT);
/PHP-8.0/ext/pdo_sqlite/tests/
H A Dbug33841.phpt15 $stmt->bindParam(':text', $name);
20 $stmt->bindParam(':text', $name);
H A Dbug70862.phpt27 $stmt->bindParam(":para", $f, PDO::PARAM_LOB);
H A Dpdo_sqlite_tostring_exception.phpt21 $stmt->bindParam('v', $param2);
/PHP-8.0/ext/pdo_firebird/tests/
H A Dbug_48877.phpt2 PDO_Firebird: bug 48877 The "bindValue" and "bindParam" do not work for PDO Firebird if we use name…
25 $stmt->bindParam(':paramno', $value, PDO::PARAM_STR);
/PHP-8.0/ext/pdo/tests/
H A Dpdo_024.phpt2 PDO Common: assert that bindParam does not modify parameter
32 $stmt->bindParam(':name', $name, PDO::PARAM_NULL);
/PHP-8.0/ext/pdo/
H A Dpdo_stmt.stub.php11 …public function bindParam(string|int $param, mixed &$var, int $type = PDO::PARAM_STR, int $maxLeng… function in PDOStatement
H A Dpdo_stmt_arginfo.h88 ZEND_METHOD(PDOStatement, bindParam);
111 ZEND_ME(PDOStatement, bindParam, arginfo_class_PDOStatement_bindParam, ZEND_ACC_PUBLIC)

Completed in 27 milliseconds

12