Lines Matching refs:rows
16 function bind_many($offset, $link, $num_params, $rows, $eval = true) {
30 for ($j = 0; $j < $rows; $j++)
31 $params[($j * $rows) + $i] = $i;
35 $stmt_types = str_repeat("i", $num_params * $rows);
36 $stmt_params = substr(str_repeat($stmt_params, $rows), 0, -2);
39 $insert .= substr(str_repeat("(" . $values . "), ", $rows), 0, -2);
43 printf("Testing %d columns with %d rows...\n", $num_params, $rows);
55 if ($stmt->param_count != $num_params * $rows) {
56 …+ 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stmt->param_count…
68 for ($i = 0; $i < $rows; $i++)
70 $param_ref[] = &$params[($i * $rows) + $j];
77 if ($stmt->param_count != $num_params * $rows) {
78 …+ 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stmt->param_count…
122 Testing 273 columns with 240 rows...
127 Testing 273 columns with 240 rows...