How can I execute original sql string in the sqplite_orm library. #788
-
How can I execute original sql string in the sqplite_orm library. If sqplite_orm can do and not use sqlite3 API,it will be more perfect. Thank you very much !!! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No way. If you want to execute raw string query please use libsqlite3 instead cause it is designed for that.
|
Beta Was this translation helpful? Give feedback.
No way. If you want to execute raw string query please use libsqlite3 instead cause it is designed for that.
sqlite_orm
is designed to eliminate usage of raw string queries and replace it with nice DSL which guarantees than you will not make a typosqlite_orm
uses sqlite3 API. There is no alternative SQLite3 engines in the world