/PHP-5.4/ext/pdo_mysql/tests/ |
H A D | bug_61207.phpt | 22 $handle1->bindValue('1', '1'); 23 $handle1->bindValue('2', '1'); 37 $handle2->bindValue('1', '2'); 38 $handle2->bindValue('2', '2'); 53 $handle3->bindValue('1', '1'); 54 $handle3->bindValue('2', '2'); 70 $handle4->bindValue('1', '3'); 71 $handle4->bindValue('2', '2');
|
H A D | pdo_mysql_stmt_bindvalue.phpt | 2 MySQL PDOStatement->bindValue() 25 if (!$stmt->bindValue(1, $in)) 47 if (!$stmt->bindValue(1, 0)) 96 if (!$stmt->bindValue(1, $in)) 100 if (!$stmt->bindValue(2, 2)) 125 if (!$stmt->bindValue(1, $in)) 130 if (!$stmt->bindValue(2, $in)) 165 if (!$stmt->bindValue(1, $in)) 187 if (!$stmt->bindValue(1, 0)) 236 if (!$stmt->bindValue(1, $in)) [all …]
|
H A D | pdo_mysql_bit.phpt | 27 $stmt->bindValue(1, $offset); 28 $stmt->bindValue(2, $value);
|
H A D | pdo_mysql_stmt_blobs.phpt | 32 $stmt->bindValue(1, 1); 33 $stmt->bindValue(2, $value);
|
H A D | pdo_mysql_stmt_closecursor.phpt | 40 $stmt2->bindValue(1, "z"); 42 $stmt2->bindValue(2, $row1['id']); 68 $stmt2->bindValue(1, "a"); 69 $stmt2->bindValue(2, $row1['id']);
|
/PHP-5.4/ext/pdo_sqlite/tests/ |
H A D | debugdumpparams_001.phpt | 13 $x->bindValue(':a', 1, PDO::PARAM_INT); 14 $x->bindValue(':b', 'foo'); 15 $x->bindValue(3, 1313);
|
H A D | bug_63916.phpt | 15 $stmt->bindValue(':id', 1, PDO::PARAM_INT); 16 $stmt->bindValue(':num', $num, PDO::PARAM_INT);
|
H A D | bug_63916-2.phpt | 15 $stmt->bindValue(':id', 1, PDO::PARAM_INT); 16 $stmt->bindValue(':num', $num, PDO::PARAM_INT);
|
/PHP-5.4/ext/pdo_pgsql/tests/ |
H A D | bug36727.phpt | 2 Bug #36727 (segfault in bindValue() when no parameters are defined) 17 var_dump($stmt->bindValue(':test', 1, PDO::PARAM_INT)); 22 Warning: PDOStatement::bindValue(): SQLSTATE[HY093]: Invalid parameter number: :test in %sbug36727.…
|
H A D | bug43925.phpt | 41 $stmt->bindValue('left', 1, PDO::PARAM_INT); 42 $stmt->bindValue('rootId', 3, PDO::PARAM_INT); 43 $stmt->bindValue('x', 5, PDO::PARAM_INT); 44 $stmt->bindValue('y', 50, PDO::PARAM_INT);
|
H A D | is_in_transaction.phpt | 25 $stmt->bindValue(1, 1); 26 $stmt->bindValue(2, "test insert"); 38 $stmt->bindValue(1, "error"); 39 $stmt->bindValue(2, "test insert");
|
H A D | bug_33876.phpt | 24 $res->bindValue(1, false, PDO::PARAM_BOOL); 31 $res->bindValue(1, true, PDO::PARAM_BOOL); 60 $res->bindValue(1, false, PDO::PARAM_BOOL); 67 $res->bindValue(1, true, PDO::PARAM_BOOL);
|
H A D | bug62593.phpt | 20 $query->bindValue(':foo', $value, PDO::PARAM_BOOL); 25 $query->bindValue(':foo', 0, PDO::PARAM_BOOL);
|
H A D | bug64953.phpt | 21 $st->bindValue(1, '1'); 27 $st->bindValue(1, '1');
|
H A D | copy_to.phpt | 29 $stmt->bindValue(1, $firstParameter); 30 $stmt->bindValue(2, $secondParameter); 31 $stmt->bindValue(3, $thirdParameter);
|
/PHP-5.4/ext/sqlite3/tests/ |
H A D | bug63921-32bit.phpt | 15 $stmt->bindValue(':id', 1, SQLITE3_INTEGER); 16 $stmt->bindValue(':num', $num, SQLITE3_INTEGER);
|
H A D | bug63921-64bit.phpt | 15 $stmt->bindValue(':id', 1, SQLITE3_INTEGER); 16 $stmt->bindValue(':num', $num, SQLITE3_INTEGER);
|
H A D | sqlite3_30_blobopen.phpt | 19 var_dump($insert_stmt->bindValue(1, 'a', SQLITE3_TEXT)); 20 var_dump($insert_stmt->bindValue(2, 'TEST TEST', SQLITE3_BLOB));
|
H A D | sqlite3_10_bound_value_name.phpt | 22 var_dump($stmt->bindValue(':id', $foo, SQLITE3_TEXT)); 24 var_dump($stmt->bindValue('id', $foo, SQLITE3_TEXT));
|
H A D | sqlite3_openblob_wrongparams.phpt | 58 var_dump($insert_stmt->bindValue(1, 'a', SQLITE3_TEXT)); 59 var_dump($insert_stmt->bindValue(2, 'TEST TEST', SQLITE3_BLOB));
|
H A D | sqlite3_33_reset.phpt | 17 $stmt->bindValue(':id', 1, SQLITE3_INTEGER);
|
/PHP-5.4/ext/pdo/tests/ |
H A D | pdo_028.phpt | 2 PDO Common: bindValue 23 $stmt->bindValue($i+1, $v);
|
H A D | bug_39398.phpt | 21 $stmt->bindValue(':boolean', isset($boolean), PDO::PARAM_INT);
|
H A D | bug65946.phpt | 20 $stmt->bindValue('limit', 1, PDO::PARAM_INT);
|
/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…
|