Home
last modified time | relevance | path

Searched refs:bind_param (Results 1 – 25 of 28) sorted by relevance

12

/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_type_juggling.phpt102 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 Dbug66124.phpt2 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 Dmysqli_stmt_bind_param_check_param_no_change.phpt25 $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 Dmysqli_stmt_execute_bind_libmysql.phpt24 $stmt->bind_param('sss', ...[&$abc, 42, $id]);
31 // 1. same as the control case, but skipping the middle-man (bind_param)
H A Dmysqli_ps_select_union.phpt170 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 Dbug52891.phpt2 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 Dbug55653.phpt23 !($stmt->bind_param("s", $in_and_out)) ||
H A Dbug44897.phpt36 if (!$stmt->bind_param('is', $new_id, $new_label) || !$stmt->execute())
57 if (!$stmt2->bind_param("i", $new_id) || !$stmt2->execute())
H A Dbug66043.phpt2 Bug #66043 (Segfault calling bind_param() on mysqli)
H A Dbug45289.phpt24 if (!$stmt->bind_param('i', $id) || !$stmt->execute())
H A Dmysqli_stmt_execute_bind.phpt24 $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 D021.phpt2 mysqli bind_param+bind_result char/text
H A D022.phpt2 mysqli bind_param/bind_result char/text long
H A Dbug48909.phpt24 if (!$stmt->bind_param("bb",$bvar, $bvar))
H A D026.phpt2 mysqli bind_param/bind_result with send_long_data
H A D023.phpt2 mysqli bind_param/bind_prepare fetch long values
H A D024.phpt2 mysqli bind_param/bind_result short values
H A D020.phpt2 mysqli bind_param/bind_result date
H A D025.phpt2 mysqli bind_param/bind_result tinyint values
H A D019.phpt2 mysqli fetch (bind_param + bind_result)
H A Dmysqli_stmt_bind_param_call_user_func.phpt76 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 Dmysqli_stmt_bind_param_many_columns.phpt68 $eval_str="\$stmt->bind_param(\"".str_repeat("s",$cols)."\", ";
H A Dmysqli_stmt_bind_limits.phpt71 if (!call_user_func_array(array($stmt, 'bind_param'), $param_ref)) {
H A Dmysqli_class_mysqli_stmt_interface.phpt27 'bind_param' => true,
H A Dmysqli_stmt_bind_param.phpt362 if (true !== ($tmp = $stmt->bind_param('is', $id, $label)))
389 printf("[2011] bind_param() failed for id = %d, [%d] %s\n",

Completed in 16 milliseconds

12