pub struct Prepare(/* private fields */);Expand description
A collection of flags use to prepare a statement.
Implementations§
Source§impl Prepare
impl Prepare
Sourcepub const PERSISTENT: Self
pub const PERSISTENT: Self
The PERSISTENT flag is a hint to the query planner that the prepared statement will be retained for a long time and probably reused many times. Without this flag, sqlite3_prepare_v3() and sqlite3_prepare16_v3() assume that the prepared statement will be used just once or at most a few times and then destroyed using sqlite3_finalize() relatively soon. The current implementation acts on this hint by avoiding the use of lookaside memory so as not to deplete the limited store of lookaside memory. Future versions of SQLite may act on this hint differently.
Sourcepub const NORMALIZE: Self
pub const NORMALIZE: Self
The NORMALIZE flag is a no-op. This flag used to be required for any prepared statement that wanted to use the sqlite3_normalized_sql() interface. However, the sqlite3_normalized_sql() interface is now available to all prepared statements, regardless of whether or not they use this flag.