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
This has been reported on soci-users (see soci error thread) where Aleksander responded:
It seems that MySQL starting with 5.5 stopped accepting
truncate 'test_table'
instead of
truncate test_table
since the variant with soci::use() escapes and quotes the string.
I don't see any way of fixing it since I can hardly stop quoting the all strings passed to use(), and it would be very hard to parse the queries to decide whether the string is a table name or something else.
The text was updated successfully, but these errors were encountered:
This has been reported on soci-users (see soci error thread) where Aleksander responded:
It seems that MySQL starting with 5.5 stopped accepting
instead of
since the variant with soci::use() escapes and quotes the string.
I don't see any way of fixing it since I can hardly stop quoting the all strings passed to use(), and it would be very hard to parse the queries to decide whether the string is a table name or something else.
The text was updated successfully, but these errors were encountered: