summary refs log tree commit diff stats
path: root/tests/stdlib/tdb_mysql.nim
blob: d97358e9f769a3d61a81b8ebe68ed33ab73609f9 (plain) (blame)
1
2
3
4
5
import std/db_mysql
import std/assertions

doAssert dbQuote("SELECT * FROM foo WHERE col1 = 'bar_baz'") == "'SELECT * FROM foo WHERE col1 = \\'bar_baz\\''"
doAssert dbQuote("SELECT * FROM foo WHERE col1 LIKE '%bar_baz%'") == "'SELECT * FROM foo WHERE col1 LIKE \\'%bar_baz%\\''"