Lines Matching refs:tmp
28 if (!is_bool($tmp = $mysqli->autocommit(true)))
29 printf("[002] Expecting boolean/any, got %s/%s\n", gettype($tmp), $tmp);
37 $tmp = $res->fetch_assoc();
39 if ($tmp['auto_commit'])
42 if (true !== ($tmp = $mysqli->autocommit( true)))
43 printf("[006] Expecting true, got %s/%s\n", gettype($tmp), $tmp);
47 $tmp = $res->fetch_assoc();
49 if (!$tmp['auto_commit'])
68 if ((!$tmp = $res->fetch_assoc()) || (1 != $tmp['num']))
70 $tmp['num'], $mysqli->errno, $mysqli->error);
83 $tmp = $res->fetch_assoc();
85 if (!$tmp['auto_commit'])
88 if (true !== ($tmp = $mysqli->autocommit( false)))
89 printf("[019] Expecting true, got %s/%s\n", gettype($tmp), $tmp);
103 $tmp = $res->fetch_assoc();
104 if (0 != $tmp['num'])
105 printf("[24] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
117 if ((!$tmp = $res->fetch_assoc()) || (1 != $tmp['num']))
119 $tmp['num'], $mysqli->errno, $mysqli->error);
127 if (NULL !== ($tmp = @$mysqli->autocommit( false)))
128 printf("[030] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);