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
exported sql file looks like this :
INSERT INTO `Table` ('db_name') VALUES ('archer')
this cannot run in mysql 8.0
INSERT INTO `Table` (`db_name`) VALUES ('archer')
this one is ok. notice the grave accent ` instead of quote ' around db_name
`
'
db_name
Can I configure the escape string around column names ?
Related: hhyo/Archery#228
The text was updated successfully, but these errors were encountered:
Currently there is no option to enclose table or column names, but I decided to provide those soon.
Update: Version 1.10.4 released which contains new options sql.tableEnclosure and sql.columnEnclosure
Sorry, something went wrong.
No branches or pull requests
exported sql file looks like this :
this cannot run in mysql 8.0
this one is ok. notice the grave accent
`
instead of quote'
arounddb_name
Can I configure the escape string around column names ?
Related: hhyo/Archery#228
The text was updated successfully, but these errors were encountered: