Home
last modified time | relevance | path

Searched refs:bindValue (Results 1 – 25 of 66) sorted by relevance

123

/php-src/ext/pdo_firebird/tests/
H A Dbug_77863.phpt31 $query->bindValue('p', 0, PDO::PARAM_BOOL);
35 $query->bindValue('p', 1, PDO::PARAM_BOOL);
39 $query->bindValue('p', false, PDO::PARAM_BOOL);
43 $query->bindValue('p', true, PDO::PARAM_BOOL);
55 $query->bindValue('p', null, PDO::PARAM_BOOL);
64 $query->bindValue('p', true, PDO::PARAM_STR);
68 $query->bindValue('p', 0, PDO::PARAM_STR);
72 $query->bindValue('p', 1, PDO::PARAM_STR);
84 $query->bindValue('p', null, PDO::PARAM_STR);
97 $query->bindValue('p', 0, PDO::PARAM_INT);
[all …]
/php-src/ext/sqlite3/tests/
H A Dsqlite3stmt_getsql_expanded.phpt20 $stmt->bindValue(':a', 42);
21 $stmt->bindValue(':b', 'php');
22 $stmt->bindValue(3, 43);
36 $stmt->bindValue(':a', 'TEST');
37 $stmt->bindValue(':b', '!!!');
38 $stmt->bindValue(3, 40);
H A Dbug70628.phpt13 $sth->bindValue(':breed', 'canis', SQLITE3_TEXT);
14 $sth->bindValue(':name', 'jack', SQLITE3_TEXT);
15 $sth->bindValue(':age', 7, SQLITE3_INTEGER);
21 $sth->bindValue(':breed', 'russel', SQLITE3_TEXT);
22 $sth->bindValue(':age', 3, SQLITE3_INTEGER);
H A Dsqlite3_bind_bug68849.phpt2 Bug #68849 bindValue is not using the right data type
17 $s->bindValue(1, 3);
22 $s->bindValue(1, true);
27 $s->bindValue(1, false);
32 $s->bindValue(1, 3.15);
H A Dbug77051.phpt15 $stmt->bindValue(':b', 'php');
16 $stmt->bindValue(':b', 'PHP');
17 $stmt->bindValue(3, 424242);
36 $stmt->bindValue(':b', 'TEST');
37 $stmt->bindValue(3, '!!!');
H A Dsqlite3stmt_getsql.phpt14 $stmt->bindValue(':a', 42);
15 $stmt->bindValue(':b', 'php');
16 $stmt->bindValue(3, 43);
H A Dbug76665.phpt2 Bug #76665 (SQLite3Stmt::bindValue() with SQLITE3_FLOAT doesn't juggle)
10 $stmt->bindValue(':bar', 17, SQLITE3_FLOAT);
H A Dexception_from_toString.phpt18 $stmt->bindValue('i', 1234);
19 $stmt->bindValue('v', new throws);
H A Dbug63921-32bit.phpt16 $stmt->bindValue(':id', 1, SQLITE3_INTEGER);
17 $stmt->bindValue(':num', $num, SQLITE3_INTEGER);
H A Dbug63921-64bit.phpt16 $stmt->bindValue(':id', 1, SQLITE3_INTEGER);
17 $stmt->bindValue(':num', $num, SQLITE3_INTEGER);
H A Dsqlite3_10_bound_value_name.phpt22 var_dump($stmt->bindValue(':id', $foo, SQLITE3_TEXT));
24 var_dump($stmt->bindValue('id', $foo, SQLITE3_TEXT));
H A Dbug72571.phpt2 Bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash)
/php-src/ext/pdo_mysql/tests/
H A Dbug_61207.phpt22 $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 Dpdo_mysql_stmt_bindvalue.phpt2 MySQL PDOStatement->bindValue()
27 if (!$stmt->bindValue(1, $in))
49 if (!$stmt->bindValue(1, 0))
98 if (!$stmt->bindValue(1, $in))
102 if (!$stmt->bindValue(2, 2))
127 if (!$stmt->bindValue(1, $in))
132 if (!$stmt->bindValue(2, $in))
167 if (!$stmt->bindValue(1, $in))
189 if (!$stmt->bindValue(1, 0))
238 if (!$stmt->bindValue(1, $in))
[all …]
/php-src/ext/pdo_sqlite/tests/
H A Ddebugdumpparams_001.phpt11 $x->bindValue(':a', 1, PDO::PARAM_INT);
12 $x->bindValue(':b', 'foo');
13 $x->bindValue(3, 1313);
H A Dbug_63916-2.phpt16 $stmt->bindValue(':id', 1, PDO::PARAM_INT);
17 $stmt->bindValue(':num', $num, PDO::PARAM_INT);
H A Dbug_63916.phpt16 $stmt->bindValue(':id', 1, PDO::PARAM_INT);
17 $stmt->bindValue(':num', $num, PDO::PARAM_INT);
/php-src/ext/pdo_pgsql/tests/
H A Ddebug_emulated_prepares.phpt19 $stmt->bindValue(':bool', true, PDO::PARAM_BOOL);
20 $stmt->bindValue(':int', 123, PDO::PARAM_INT);
21 $stmt->bindValue(':string', 'foo', PDO::PARAM_STR);
22 $stmt->bindValue(':null', null, PDO::PARAM_NULL);
H A Dbug43925.phpt39 $stmt->bindValue('left', 1, PDO::PARAM_INT);
40 $stmt->bindValue('rootId', 3, PDO::PARAM_INT);
41 $stmt->bindValue('x', 5, PDO::PARAM_INT);
42 $stmt->bindValue('y', 50, PDO::PARAM_INT);
H A Dbug36727.phpt2 Bug #36727 (segfault in bindValue() when no parameters are defined)
19 var_dump($stmt->bindValue(':test', 1, PDO::PARAM_INT));
30 Warning: PDOStatement::bindValue(): SQLSTATE[HY093]: Invalid parameter number: :test in %s on line …
H A Dis_in_transaction.phpt27 $stmt->bindValue(1, 1);
28 $stmt->bindValue(2, "test insert");
40 $stmt->bindValue(1, "error");
41 $stmt->bindValue(2, "test insert");
H A Dbug64953.phpt23 $st->bindValue(1, '1');
29 $st->bindValue(1, '1');
H A Dbug_33876.phpt25 $res->bindValue(1, false, PDO::PARAM_BOOL);
32 $res->bindValue(1, true, PDO::PARAM_BOOL);
61 $res->bindValue(1, false, PDO::PARAM_BOOL);
68 $res->bindValue(1, true, PDO::PARAM_BOOL);
/php-src/ext/pdo/tests/
H A Ddebug_emulated_prepares.phpt30 $stmt->bindValue(':bool', true, PDO::PARAM_BOOL);
31 $stmt->bindValue(':int', 123, PDO::PARAM_INT);
32 $stmt->bindValue(':string', 'foo', PDO::PARAM_STR);
33 $stmt->bindValue(':null', null, PDO::PARAM_NULL);
H A Dpdo_028.phpt2 PDO Common: bindValue
24 $stmt->bindValue($i+1, $v);

Completed in 69 milliseconds

123