Lines Matching refs:test
32 if (!mysqli_query($link,"DROP TABLE IF EXISTS test") ||
33 !mysqli_query($link,"CREATE TABLE test(a int, b varchar(10)) Engine=InnoDB") ||
34 !mysqli_query($link, "INSERT INTO test VALUES (1, 'foobar')"))
35 printf("[004] Cannot create test data, [%d] %s\n",
42 if (!mysqli_query($link, "DELETE FROM test") ||
43 !mysqli_query($link, "INSERT INTO test VALUES (2, 'egon')"))
44 printf("[006] Cannot modify test data, [%d] %s\n",
51 $result = mysqli_query($link, "SELECT SQL_NO_CACHE * FROM test");
59 if (!mysqli_query($link, "DELETE FROM test") ||
60 !mysqli_query($link, "INSERT INTO test VALUES (2, 'egon')"))
61 printf("[009] Cannot modify test data, [%d] %s\n",
66 $result = mysqli_query($link, "SELECT * FROM test");
74 mysqli_query($link, "DROP TABLE IF EXISTS test");