Introduce Iterator

This commit is contained in:
Ivan Ukhov
2015-08-02 22:29:04 -04:00
parent c4772f7dd8
commit d89cc13d7b
6 changed files with 115 additions and 28 deletions

View File

@ -163,9 +163,11 @@ impl error::Error for Error {
}
mod connection;
mod iterator;
mod statement;
pub use connection::Connection;
pub use iterator::Iterator;
pub use statement::{Statement, State, Bindable, Readable};
/// Open a connection to a new or existing database.