Lines Matching refs:rows
13 function bind_many($offset, $link, $num_params, $rows, $eval = true) {
27 for ($j = 0; $j < $rows; $j++)
28 $params[($j * $rows) + $i] = $i;
32 $stmt_types = str_repeat("i", $num_params * $rows);
33 $stmt_params = substr(str_repeat($stmt_params, $rows), 0, -2);
36 $insert .= substr(str_repeat("(" . $values . "), ", $rows), 0, -2);
40 printf("Testing %d columns with %d rows...\n", $num_params, $rows);
52 if ($stmt->param_count != $num_params * $rows) {
53 …printf("[%03d + 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stm…
65 for ($i = 0; $i < $rows; $i++)
67 $param_ref[] = &$params[($i * $rows) + $j];
74 if ($stmt->param_count != $num_params * $rows) {
75 …printf("[%03d + 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stm…
119 Testing 273 columns with 240 rows...
124 Testing 273 columns with 240 rows...