Skip to content
New issue

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

Not escaping singel quotes (') #1956

Open
toddpage opened this issue Jan 16, 2024 · 0 comments
Open

Not escaping singel quotes (') #1956

toddpage opened this issue Jan 16, 2024 · 0 comments
Labels
Bug Something isn't working PR Welcome Issues and fixes available for wide community to help us move forward by creating a PR with solution

Comments

@toddpage
Copy link

  • Sequel Ace Version (including build number): Version 4.0.13 (Build 20062)
  • Sequel Ace Source (App Store/GitHub/Homebrew): N/A
  • macOS Version: 13.5 (22G74)
  • Processor Type (Intel/Apple): Intel
  • MySQL Version: MariaDB
  • macOS Localization: Tried on RHEL8 and Debian 11

Is Issue Present in Latest Beta?

Description
A clear and concise description of what the bug is.

Steps To Reproduce

  1. Go to export data
  2. Error on importing data
  3. View SQL file and single quotes are not escaped, Example:

INSERT INTO thisTable (word, language, active)
VALUES
('any','en',0),
('are','en',0),
('aren't','en',0), <= did not escape
....

Expected Behaviour

INSERT INTO thisTable (word, language, active)
VALUES
('any','en',0),
('are','en',0),
('aren't','en',0), <= should have escaped
....

Related Issues

Additional Context

@Jason-Morcos Jason-Morcos added Bug Something isn't working PR Welcome Issues and fixes available for wide community to help us move forward by creating a PR with solution labels Jan 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working PR Welcome Issues and fixes available for wide community to help us move forward by creating a PR with solution
Projects
None yet
Development

No branches or pull requests

2 participants