cake/dialect/sqlite_dialect
🪶SQLite dialect to be used in conjunction with the sqlight
library.
Types
pub type PreparedStatement =
prepared_statement.PreparedStatement
pub type WriteQuery(a) =
write_query.WriteQuery(a)
Functions
pub fn cake_query_to_prepared_statement(
query qry: CakeQuery(a),
) -> PreparedStatement
Converts a cake query to a 🪶SQLite prepared statement.
pub fn read_query_to_prepared_statement(
query qry: ReadQuery,
) -> PreparedStatement
Converts read query to a 🪶SQLite prepared statement.
pub fn write_query_to_prepared_statement(
query qry: WriteQuery(a),
) -> PreparedStatement
Converts a write query to a 🪶SQLite prepared statement.