/PHP-5.4/ext/pdo_mysql/tests/ |
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) 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 D | pdo_mysql_stmt_blobfromsteam.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 | bug_37445.phpt | 17 $stmt->bindParam(':a', 'b');
|
H A D | pdo_mysql_stmt_bindparam.phpt | 2 MySQL PDOStatement->bindParam() 21 if (!$stmt->bindParam(1, $in)) 54 if (!$stmt->bindParam(1, $label))
|
H A D | pdo_mysql_stmt_variable_columncount.phpt | 60 $stmt->bindParam(1, $columns); 74 $stmt->bindParam(1, $columns);
|
H A D | pdo_mysql_prepare_match_against.phpt | 2 Bug #41876 (bindParam() and bindValue() do not work with MySQL MATCH () AGAINST ())
|
/PHP-5.4/ext/pdo/ |
H A D | pdo.php | 13 $stmt->bindParam(":name", $the_name, PDO_PARAM_STR, 32); 14 $stmt->bindParam(":value", $the_value, PDO_PARAM_STR, 32);
|
/PHP-5.4/ext/pdo_sqlite/tests/ |
H A D | bug33841.phpt | 15 $stmt->bindParam(':text', $name); 20 $stmt->bindParam(':text', $name);
|
/PHP-5.4/ext/pdo/tests/ |
H A D | pdo_024.phpt | 2 PDO Common: assert that bindParam does not modify parameter 22 $stmt->bindParam(':name', $name);
|
H A D | pdo_018.phpt | 88 $stmt->bindParam(':cname', $cname); 109 $stmt->bindParam(':id', $idx); 110 $stmt->bindParam(':classtype', $ctype); 111 $stmt->bindParam(':val', $val);
|
H A D | pdo_016.phpt | 51 $stmt3->bindParam(':inp', $idx); /* by foreign name */ 54 $stmt4->bindParam(':txt', $txt); /* using same name */
|
H A D | pdo_016a.phpt | 51 $stmt3->bindParam('inp', $idx); /* by foreign name */ 54 $stmt4->bindParam('txt', $txt); /* using same name */
|
/PHP-5.4/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… 23 $stmt->bindParam(':paramno', $value, PDO::PARAM_STR);
|
H A D | execute.phpt | 26 $s->bindParam(1,$id);
|
/PHP-5.4/ext/pdo_pgsql/tests/ |
H A D | bug62593.phpt | 29 // Verify bindParam maintains reference and only passes when execute is called 31 $query->bindParam(':foo', $value, PDO::PARAM_BOOL);
|
/PHP-5.4/ext/pdo_oci/tests/ |
H A D | pecl_bug_6364.phpt | 26 $stmt->bindParam(1, $out_param1,PDO::PARAM_STR, 1024); 27 $stmt->bindParam(2, $out_param2,PDO::PARAM_STR, 1024);
|
H A D | bug57702.phpt | 30 $stmt->bindParam(':id', $id); 31 $stmt->bindParam(':blob1', $blob1, PDO::PARAM_LOB); 32 $stmt->bindParam(':blob2', $blob2, PDO::PARAM_LOB);
|
/PHP-5.4/ext/sqlite3/tests/ |
H A D | bug45798.phpt | 17 $stmt->bindParam(1, $foo, SQLITE3_TEXT);
|
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_09_blob_bound_param.phpt | 24 var_dump($insert_stmt->bindParam(2, $foo, SQLITE3_BLOB));
|
H A D | sqlite3_26_reset_prepared_stmt.phpt | 22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
|
H A D | sqlite3_27_reset_prepared_stmt_result.phpt | 22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
|
H A D | sqlite3_28_clear_bindings.phpt | 22 var_dump($stmt->bindParam(1, $foo, SQLITE3_TEXT));
|