MySQL double quotes get removed
Posted: Thu 25 Jan 2018 16:22
Hey!
I'm still trying out your components. Now I want to use UniDAC and MySQL.
If I do
all double quotes will be replaced by This is not a single quote, it's a quote for table names, not for strings.
The same happens when
How can I solve this Problem?
I'm still trying out your components. Now I want to use UniDAC and MySQL.
If I do
Code: Select all
AnyTable.SQL.Text:= 'SELECT * FROM automat WHERE name="Test"'
Code: Select all
`
The same happens when
Code: Select all
AnyTable.Connection.MacroByName('any_condition').Value:= 'name="Test"';
How can I solve this Problem?