Lines Matching refs:rows
15 function bind_many($offset, $link, $num_params, $rows, $eval = true) {
29 for ($j = 0; $j < $rows; $j++)
30 $params[($j * $rows) + $i] = $i;
34 $stmt_types = str_repeat("i", $num_params * $rows);
35 $stmt_params = substr(str_repeat($stmt_params, $rows), 0, -2);
38 $insert .= substr(str_repeat("(" . $values . "), ", $rows), 0, -2);
42 printf("Testing %d columns with %d rows...\n", $num_params, $rows);
54 if ($stmt->param_count != $num_params * $rows) {
55 …+ 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stmt->param_count…
67 for ($i = 0; $i < $rows; $i++)
69 $param_ref[] = &$params[($i * $rows) + $j];
76 if ($stmt->param_count != $num_params * $rows) {
77 …+ 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stmt->param_count…
121 Testing 273 columns with 240 rows...
126 Testing 273 columns with 240 rows...