Lines Matching refs:mysqli_query
42 if (!mysqli_query($link, 'SET AUTOCOMMIT = 0'))
45 if (!$res = mysqli_query($link, 'SELECT @@autocommit as auto_commit'))
56 if (!$res = mysqli_query($link, 'SELECT @@autocommit as auto_commit'))
63 if (!mysqli_query($link, 'DROP TABLE IF EXISTS test'))
66 if (!mysqli_query($link, 'CREATE TABLE test(id INT) ENGINE = InnoDB')) {
70 if (!mysqli_query($link, 'INSERT INTO test(id) VALUES (1)'))
73 if (!mysqli_query($link, 'ROLLBACK'))
76 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS num FROM test'))
85 if (!mysqli_query($link, 'DROP TABLE IF EXISTS test'))
88 if (!mysqli_query($link, 'SET AUTOCOMMIT = 1'))
91 if (!$res = mysqli_query($link, 'SELECT @@autocommit as auto_commit'))
101 if (!mysqli_query($link, 'CREATE TABLE test(id INT) ENGINE = InnoDB')) {
105 if (!mysqli_query($link, 'INSERT INTO test(id) VALUES (1)'))
108 if (!mysqli_query($link, 'ROLLBACK'))
111 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS num FROM test'))
118 if (!mysqli_query($link, 'INSERT INTO test(id) VALUES (1)'))
121 if (!mysqli_query($link, 'COMMIT'))
124 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS num FROM test'))
132 if (!mysqli_query($link, 'DROP TABLE IF EXISTS test'))