/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_type_juggling.phpt | 101 2) bind_param('is', 1, 1) 103 4) bind_param('is', 1, 'a') 107 bind_param('ii', '1', '2') --> OK (int column, string value) 108 bind_param('ii', 1, 2) --> OK (int column, int value) 110 bind_param('ss', 1, 2) --> OK (string column, int value) 114 bind_param('is', 1, 1) ---> ??
|
H A D | bug66124.phpt | 2 Bug #66124 (mysqli under mysqlnd loses precision when bind_param with 'i') 41 $stmt->bind_param('i', $id); 69 $stmt->bind_param('s', $id);
|
H A D | mysqli_stmt_bind_param_check_param_no_change.phpt | 24 $stmt->bind_param("s", $foo->bar); 39 $stmt->bind_param("si", $foo->bar, $foo->bar); 55 $stmt->bind_param("is", $foo->bar, $foo->bar);
|
H A D | mysqli_ps_select_union.phpt | 169 print "Testing bind_param(), strings only...\n"; 176 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1)) 195 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute()) 209 print "Testing bind_param(), strings only, with CAST AS CHAR...\n"; 216 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1)) 235 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute()) 266 Testing bind_param(), strings only... 270 Testing bind_param(), strings only, with CAST AS CHAR...
|
H A D | bug55653.phpt | 22 !($stmt->bind_param("s", $in_and_out)) ||
|
H A D | bug52891.phpt | 2 Bug #52891 (Wrong data inserted with mysqli/mysqlnd when using bind_param,value > LONG_MAX) 38 if (!$stmt1->bind_param("i", $param)) 41 if (!$stmt2->bind_param("i", $param))
|
H A D | bug44897.phpt | 36 if (!$stmt->bind_param('is', $new_id, $new_label) || !$stmt->execute()) 57 if (!$stmt2->bind_param("i", $new_id) || !$stmt2->execute())
|
H A D | bug66043.phpt | 2 Bug #66043 (Segfault calling bind_param() on mysqli)
|
H A D | bug45289.phpt | 23 if (!$stmt->bind_param('i', $id) || !$stmt->execute())
|
H A D | 021.phpt | 2 mysqli bind_param+bind_result char/text
|
H A D | 022.phpt | 2 mysqli bind_param/bind_result char/text long
|
H A D | bug48909.phpt | 23 if (!$stmt->bind_param("bb",$bvar, $bvar))
|
H A D | 023.phpt | 2 mysqli bind_param/bind_prepare fetch long values
|
H A D | 024.phpt | 2 mysqli bind_param/bind_result short values
|
H A D | 026.phpt | 2 mysqli bind_param/bind_result with send_long_data
|
H A D | 020.phpt | 2 mysqli bind_param/bind_result date
|
H A D | 025.phpt | 2 mysqli bind_param/bind_result tinyint values
|
H A D | 019.phpt | 2 mysqli fetch (bind_param + bind_result)
|
H A D | mysqli_stmt_bind_param_call_user_func.phpt | 75 if (!call_user_func_array(array($stmt, 'bind_param'), $params)) 103 if (!call_user_func_array(array($stmt, 'bind_param'), $params)) 130 if (!call_user_func_array(array($stmt, 'bind_param'), $params)) 298 if (!call_user_func_array(array($stmt, 'bind_param'), $params))
|
H A D | mysqli_stmt_bind_param_many_columns.phpt | 67 $eval_str="\$stmt->bind_param(\"".str_repeat("s",$cols)."\", ";
|
H A D | mysqli_stmt_bind_limits.phpt | 68 if (!call_user_func_array(array($stmt, 'bind_param'), $param_ref)) {
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 26 'bind_param' => true,
|
H A D | mysqli_stmt_bind_param.phpt | 361 if (true !== ($tmp = $stmt->bind_param('is', $id, $label))) 388 printf("[2011] bind_param() failed for id = %d, [%d] %s\n",
|
H A D | mysqli_stmt_big_prepare.phpt | 32 …$stmt->bind_param('iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
|
/PHP-8.0/ext/mysqli/ |
H A D | mysqli.stub.php | 410 public function bind_param(string $types, mixed &...$vars) {} function in mysqli_stmt
|