Home
last modified time | relevance | path

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

12

/PHP-7.1/ext/sqlite3/tests/
H A Dbug72571.phpt2 Bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash)
12 // bindParam crash
14 $stmt->bindParam(0, $i);
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);
H A Dsqlite3_06_prepared_stmt.phpt22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
H A Dsqlite3_09_blob_bound_param.phpt24 var_dump($insert_stmt->bindParam(2, $foo, SQLITE3_BLOB));
H A Dsqlite3_26_reset_prepared_stmt.phpt22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
/PHP-7.1/ext/pdo_mysql/tests/
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);
42 $stmt->bindParam(2, $mybool, PDO::PARAM_BOOL);
52 $stmt->bindParam(1, $id);
54 $stmt->bindParam(2, $mybool, PDO::PARAM_INT);
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 Dbug_37445.phpt17 $stmt->bindParam(':a', 'b');
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-7.1/ext/pdo_oci/tests/
H A Dbug60994.phpt26 $insert->bindParam(':id', $id, \PDO::PARAM_STR);
33 $insert->bindParam(':data', $string1, \PDO::PARAM_STR, strlen($string1)); // length in bytes
35 $select->bindParam(':id', $id, \PDO::PARAM_STR);
50 $insert->bindParam(':data', $string2, \PDO::PARAM_STR, strlen($string2)); // length in bytes
52 $select->bindParam(':id', $id, \PDO::PARAM_STR);
67 $insert->bindParam(':data', $string3, \PDO::PARAM_STR, strlen($string3)); // length in bytes
69 $select->bindParam(':id', $id, \PDO::PARAM_STR);
84 $insert->bindParam(':data', $string4, \PDO::PARAM_STR, strlen($string4)); // length in bytes
86 $select->bindParam(':id', $id, \PDO::PARAM_STR);
H A Dpdo_oci_stream_2a.phpt29 $stmt->bindParam(':id', $id);
30 $stmt->bindParam(':blob1', $blob1, PDO::PARAM_LOB);
31 $stmt->bindParam(':blob2', $blob2, PDO::PARAM_LOB);
H A Dpecl_bug_6364.phpt26 $stmt->bindParam(1, $out_param1,PDO::PARAM_STR, 1024);
27 $stmt->bindParam(2, $out_param2,PDO::PARAM_STR, 1024);
H A Dbug57702.phpt30 $stmt->bindParam(':id', $id);
31 $stmt->bindParam(':blob1', $blob1, PDO::PARAM_LOB);
32 $stmt->bindParam(':blob2', $blob2, PDO::PARAM_LOB);
/PHP-7.1/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-7.1/ext/pdo/
H A Dpdo.php13 $stmt->bindParam(":name", $the_name, PDO_PARAM_STR, 32);
14 $stmt->bindParam(":value", $the_value, PDO_PARAM_STR, 32);
/PHP-7.1/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);
/PHP-7.1/ext/pdo/tests/
H A Dpdo_024.phpt2 PDO Common: assert that bindParam does not modify parameter
22 $stmt->bindParam(':name', $name);
H A Dpdo_018.phpt88 $stmt->bindParam(':cname', $cname);
109 $stmt->bindParam(':id', $idx);
110 $stmt->bindParam(':classtype', $ctype);
111 $stmt->bindParam(':val', $val);
/PHP-7.1/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…
23 $stmt->bindParam(':paramno', $value, PDO::PARAM_STR);

Completed in 68 milliseconds

12