We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Information
Describe the Problem The <>quotation syntax can not used on the sql contains 'exists'. For example: DROP TABLE IF EXISTS <user>;
DROP TABLE IF EXISTS <user>;
Detail Code
$database = new Medoo([ .... "prefix" => "WP_" ]); $database.query("DROP TABLE IF EXISTS <user>;");
Expected output DROP TABLE IF EXISTS "WP_user";
The text was updated successfully, but these errors were encountered:
[fix] Fix query table quotation for TABLE IF EXISTS #1036
00ea59d
This is fixed on 00ea59d.
Sorry, something went wrong.
No branches or pull requests
Information
Describe the Problem
The <>quotation syntax can not used on the sql contains 'exists'. For example:
DROP TABLE IF EXISTS <user>;
Detail Code
Expected output
DROP TABLE IF EXISTS "WP_user";
The text was updated successfully, but these errors were encountered: