You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysqli_select_db($link, "Oh lord, let this be an unknown database name");
67
79
80
+
mysqli_multi_query($link, "SELECT 1; FOO;");
81
+
mysqli_autocommit($link, true);
82
+
mysqli_commit($link);
83
+
mysqli_rollback($link);
84
+
while(mysqli_more_results($link)) {
85
+
mysqli_next_result($link);
86
+
$res = mysqli_store_result($link);
87
+
}
88
+
mysqli_next_result($link);
89
+
68
90
/*
69
91
Internal macro MYSQL_REPORT_STMT_ERROR
70
92
*/
@@ -292,6 +314,16 @@ mysqli_kill(): Argument #2 ($process_id) must be greater than 0
292
314
Warning: mysqli_prepare(): (%d/%d): You have an error in your SQL syntax; check the manual that corresponds to your %s server version for the right syntax to use near 'FOO' at line 1 in %s on line %d
293
315
294
316
Warning: mysqli_real_query(): (%d/%d): You have an error in your SQL syntax; check the manual that corresponds to your %s server version for the right syntax to use near 'FOO' at line 1 in %s on line %d
317
+
318
+
Warning: mysqli_autocommit(): (%s/%d): Commands out of sync; you can't run this command now in %s on line %d
319
+
320
+
Warning: mysqli_commit(): (%s/%d): Commands out of sync; you can't run this command now in %s on line %d
321
+
322
+
Warning: mysqli_rollback(): (%s/%d): Commands out of sync; you can't run this command now in %s on line %d
323
+
324
+
Warning: mysqli_store_result(): (%s/%d): You have an error in your SQL syntax; check the manual that corresponds to your %s server version for the right syntax to use near 'FOO' at line 1 in %s on line %d
325
+
326
+
Warning: mysqli_stmt_attr_set(): (%s/%d): Not implemented in %s on line %d
295
327
mysqli_kill(): Argument #2 ($process_id) must be greater than 0
296
328
297
329
Warning: mysqli_stmt_prepare(): (%d/%d): You have an error in your SQL syntax; check the manual that corresponds to your %s server version for the right syntax to use near 'FOO' at line 1 in %s on line %d
0 commit comments