2017-02-08 09:37:52 +08:00
|
|
|
#![allow(non_snake_case, non_camel_case_types)]
|
2015-12-13 05:39:05 +08:00
|
|
|
|
2015-12-13 12:13:48 +08:00
|
|
|
pub use self::error::*;
|
2015-02-24 04:22:34 +08:00
|
|
|
|
2017-03-09 03:35:07 +08:00
|
|
|
use std::default::Default;
|
2014-10-20 07:56:41 +08:00
|
|
|
use std::mem;
|
|
|
|
|
2015-12-13 12:13:48 +08:00
|
|
|
mod error;
|
2015-12-13 12:10:21 +08:00
|
|
|
|
2015-07-27 01:43:43 +08:00
|
|
|
pub fn SQLITE_STATIC() -> sqlite3_destructor_type {
|
|
|
|
Some(unsafe { mem::transmute(0isize) })
|
|
|
|
}
|
2014-10-20 07:56:41 +08:00
|
|
|
|
2015-07-27 01:43:43 +08:00
|
|
|
pub fn SQLITE_TRANSIENT() -> sqlite3_destructor_type {
|
|
|
|
Some(unsafe { mem::transmute(-1isize) })
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2017-02-04 18:01:38 +08:00
|
|
|
/// Run-Time Limit Categories
|
2019-02-02 18:04:46 +08:00
|
|
|
#[repr(i32)]
|
2017-02-04 18:01:38 +08:00
|
|
|
pub enum Limit {
|
|
|
|
/// The maximum size of any string or BLOB or table row, in bytes.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_LENGTH = SQLITE_LIMIT_LENGTH,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum length of an SQL statement, in bytes.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_SQL_LENGTH = SQLITE_LIMIT_SQL_LENGTH,
|
|
|
|
/// The maximum number of columns in a table definition or in the result set
|
|
|
|
/// of a SELECT or the maximum number of columns in an index or in an
|
|
|
|
/// ORDER BY or GROUP BY clause.
|
|
|
|
SQLITE_LIMIT_COLUMN = SQLITE_LIMIT_COLUMN,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum depth of the parse tree on any expression.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_EXPR_DEPTH = SQLITE_LIMIT_EXPR_DEPTH,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum number of terms in a compound SELECT statement.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_COMPOUND_SELECT = SQLITE_LIMIT_COMPOUND_SELECT,
|
|
|
|
/// The maximum number of instructions in a virtual machine program used to
|
|
|
|
/// implement an SQL statement.
|
|
|
|
SQLITE_LIMIT_VDBE_OP = SQLITE_LIMIT_VDBE_OP,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum number of arguments on a function.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_FUNCTION_ARG = SQLITE_LIMIT_FUNCTION_ARG,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum number of attached databases.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_ATTACHED = SQLITE_LIMIT_ATTACHED,
|
|
|
|
/// The maximum length of the pattern argument to the LIKE or GLOB
|
|
|
|
/// operators.
|
|
|
|
SQLITE_LIMIT_LIKE_PATTERN_LENGTH = SQLITE_LIMIT_LIKE_PATTERN_LENGTH,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum index number of any parameter in an SQL statement.
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_LIMIT_VARIABLE_NUMBER = SQLITE_LIMIT_VARIABLE_NUMBER,
|
2017-02-04 18:01:38 +08:00
|
|
|
/// The maximum depth of recursion for triggers.
|
|
|
|
SQLITE_LIMIT_TRIGGER_DEPTH = 10,
|
2019-02-02 18:04:46 +08:00
|
|
|
/// The maximum number of auxiliary worker threads that a single prepared
|
|
|
|
/// statement may start.
|
2017-02-04 18:01:38 +08:00
|
|
|
SQLITE_LIMIT_WORKER_THREADS = 11,
|
|
|
|
}
|
2017-02-08 09:37:52 +08:00
|
|
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/bindgen.rs"));
|
2017-03-09 03:35:07 +08:00
|
|
|
|
|
|
|
pub type sqlite3_index_constraint = sqlite3_index_info_sqlite3_index_constraint;
|
|
|
|
pub type sqlite3_index_constraint_usage = sqlite3_index_info_sqlite3_index_constraint_usage;
|
|
|
|
|
|
|
|
impl Default for sqlite3_vtab {
|
2018-08-11 19:37:56 +08:00
|
|
|
fn default() -> Self {
|
|
|
|
unsafe { mem::zeroed() }
|
|
|
|
}
|
2017-03-09 03:35:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for sqlite3_vtab_cursor {
|
2018-08-11 19:37:56 +08:00
|
|
|
fn default() -> Self {
|
|
|
|
unsafe { mem::zeroed() }
|
|
|
|
}
|
|
|
|
}
|