2015-03-20 06:08:41 -06:00
|
|
|
#![feature(core, old_io, old_path, os, collections, unicode)]
|
|
|
|
#![allow(unused_variables, dead_code)]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2015-03-10 08:07:47 -06:00
|
|
|
|
|
|
|
pub mod btree;
|
|
|
|
pub mod pager;
|
|
|
|
pub mod pagermemory;
|
|
|
|
pub mod pagerstream;
|
|
|
|
pub mod sqlsyntax;
|
2015-03-20 06:08:41 -06:00
|
|
|
pub mod tempdb;
|
|
|
|
|
2015-03-10 08:07:47 -06:00
|
|
|
mod byteutils;
|
2015-03-20 06:08:41 -06:00
|
|
|
mod databaseinfo;
|
|
|
|
mod identifier;
|
|
|
|
mod queryplan;
|
|
|
|
mod types;
|
2015-03-10 08:07:47 -06:00
|
|
|
|
|
|
|
pub use self::pager::Pager;
|
|
|
|
pub use self::pagermemory::PagerMemory;
|
|
|
|
pub use self::pagerstream::PagerStream;
|
|
|
|
|
|
|
|
pub enum SQLError {
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type SQLResult<T> = Result<T, SQLError>;
|