/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_type_juggling.phpt | 102 2) bind_param('is', 1, 1) 104 4) bind_param('is', 1, 'a') 108 bind_param('ii', '1', '2') --> OK (int column, string value) 109 bind_param('ii', 1, 2) --> OK (int column, int value) 111 bind_param('ss', 1, 2) --> OK (string column, int value) 115 bind_param('is', 1, 1) ---> ??
|
H A D | bug66124.phpt | 2 Bug #66124 (mysqli under mysqlnd loses precision when bind_param with 'i') 42 $stmt->bind_param('i', $id); 70 $stmt->bind_param('s', $id);
|
H A D | mysqli_stmt_bind_param_check_param_no_change.phpt | 25 $stmt->bind_param("s", $foo->bar); 40 $stmt->bind_param("si", $foo->bar, $foo->bar); 56 $stmt->bind_param("is", $foo->bar, $foo->bar);
|
H A D | mysqli_stmt_execute_bind_libmysql.phpt | 24 $stmt->bind_param('sss', ...[&$abc, 42, $id]); 31 // 1. same as the control case, but skipping the middle-man (bind_param)
|
H A D | mysqli_ps_select_union.phpt | 170 print "Testing bind_param(), strings only...\n"; 177 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1)) 196 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute()) 210 print "Testing bind_param(), strings only, with CAST AS CHAR...\n"; 217 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1)) 236 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute()) 267 Testing bind_param(), strings only... 271 Testing bind_param(), strings only, with CAST AS CHAR...
|
H A D | bug52891.phpt | 2 Bug #52891 (Wrong data inserted with mysqli/mysqlnd when using bind_param,value > LONG_MAX) 39 if (!$stmt1->bind_param("i", $param)) 42 if (!$stmt2->bind_param("i", $param))
|
H A D | bug55653.phpt | 23 !($stmt->bind_param("s", $in_and_out)) ||
|
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 | 24 if (!$stmt->bind_param('i', $id) || !$stmt->execute())
|
H A D | mysqli_stmt_execute_bind.phpt | 24 $stmt->bind_param('sss', ...[&$abc, 42, $id]); 29 // 1. same as the control case, but skipping the middle-man (bind_param) 118 $stmt->bind_param('sss', ...['abc', 42, null]);
|
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 | 24 if (!$stmt->bind_param("bb",$bvar, $bvar))
|
H A D | 026.phpt | 2 mysqli bind_param/bind_result with send_long_data
|
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 | 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 | 76 if (!call_user_func_array(array($stmt, 'bind_param'), $params)) 104 if (!call_user_func_array(array($stmt, 'bind_param'), $params)) 131 if (!call_user_func_array(array($stmt, 'bind_param'), $params)) 299 if (!call_user_func_array(array($stmt, 'bind_param'), $params))
|
H A D | mysqli_stmt_bind_param_many_columns.phpt | 68 $eval_str="\$stmt->bind_param(\"".str_repeat("s",$cols)."\", ";
|
H A D | mysqli_stmt_bind_limits.phpt | 71 if (!call_user_func_array(array($stmt, 'bind_param'), $param_ref)) {
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 27 'bind_param' => true,
|
H A D | mysqli_stmt_bind_param.phpt | 362 if (true !== ($tmp = $stmt->bind_param('is', $id, $label))) 389 printf("[2011] bind_param() failed for id = %d, [%d] %s\n",
|