This commit is contained in:
gwenn
2018-11-01 09:40:56 +01:00
parent ebc3609a09
commit 495f1d529a
6 changed files with 8 additions and 10 deletions

View File

@@ -147,7 +147,7 @@ pub mod vtab;
// Number of cached prepared statements we'll hold on to.
const STATEMENT_CACHE_DEFAULT_CAPACITY: usize = 16;
/// To be used when your statement has no [parameter](https://sqlite.org/lang_expr.html#varparam).
pub const NO_PARAMS: &'static [&'static ToSql] = &[];
pub const NO_PARAMS: &[&ToSql] = &[];
/// Old name for `Result`. `SqliteResult` is deprecated.
#[deprecated(since = "0.6.0", note = "Use Result instead")]