Lines Matching refs:tmp

25 				$tmp = $db->errorInfo();
28 ($error_info['prepare']['sqlstate'] !== $tmp[0])) {
30 $offset, $error_info['prepare']['sqlstate'], $tmp[0]);
35 ($error_info['prepare']['mysql'] !== $tmp[1])) {
37 $offset, $error_info['prepare']['mysql'], $tmp[0]);
57 $tmp = $stmt->errorInfo();
60 ($error_info['execute']['sqlstate'] !== $tmp[0])) {
62 $offset, $error_info['execute']['sqlstate'], $tmp[0]);
67 ($error_info['execute']['mysql'] !== $tmp[1])) {
69 $offset, $error_info['execute']['mysql'], $tmp[0]);
144 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 2)
145 printf("[024] '1' IS NOT NULL evaluates to true, expecting two rows, got %d rows\n", $tmp);
149 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 0)
150 printf("[026] '1' IS NOT NULL evaluates to true, expecting zero rows, got %d rows\n", $tmp);
163 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 2)
164 printf("[033] Expecting two rows, got %d rows\n", $tmp);
185 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 0)
186 printf("[040] Expecting zero rows, got %d rows\n", $tmp);
192 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 2)
193 printf("[042] Expecting two rows, got %d rows\n", $tmp);
197 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 1)
198 printf("[044] Expecting onw row, got %d rows\n", $tmp);
249 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 2)
250 printf("[065] '1' IS NOT NULL evaluates to true, expecting two rows, got %d rows\n", $tmp);
254 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 0)
255 printf("[067] '1' IS NOT NULL evaluates to true, expecting zero rows, got %d rows\n", $tmp);
268 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 2)
269 printf("[074] Expecting two rows, got %d rows\n", $tmp);
294 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 0)
295 printf("[080] Expecting zero rows, got %d rows\n", $tmp);
301 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 2)
302 printf("[082] Expecting two rows, got %d rows\n", $tmp);
306 if (count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 1)
307 printf("[084] Expecting one row, got %d rows\n", $tmp);
311 if (is_object($stmt) && count(($tmp = $stmt->fetchAll(PDO::FETCH_ASSOC))) != 0)
312 printf("[086] Expecting no rows, got %d rows\n", $tmp);