Add blob feature to README and Changelog

This commit is contained in:
John Gallagher 2015-12-14 16:24:11 -05:00
parent d24968db15
commit f8540062f8
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@
The old, prefixed names are still exported but are deprecated. The old, prefixed names are still exported but are deprecated.
* Adds a variety of `..._named` methods for executing queries using named placeholder parameters. * Adds a variety of `..._named` methods for executing queries using named placeholder parameters.
* Adds `backup` feature that exposes SQLite's online backup API. * Adds `backup` feature that exposes SQLite's online backup API.
* Adds `blob` feature that exposes SQLite's Incremental I/O for BLOB API.
* Adds `functions` feature that allows user-defined scalar functions to be added to * Adds `functions` feature that allows user-defined scalar functions to be added to
open `SqliteConnection`s. open `SqliteConnection`s.

View File

@ -69,6 +69,8 @@ features](http://doc.crates.io/manifest.html#the-features-section). They are:
allows you to load Rust closures into SQLite connections for use in queries. allows you to load Rust closures into SQLite connections for use in queries.
* [`trace`](http://jgallagher.github.io/rusqlite/rusqlite/trace/index.html) * [`trace`](http://jgallagher.github.io/rusqlite/rusqlite/trace/index.html)
allows hooks into SQLite's tracing and profiling APIs. allows hooks into SQLite's tracing and profiling APIs.
* [`blob`](http://jgallagher.github.io/rusqlite/rusqlite/blob/index.html)
gives `std::io::{Read, Write, Seek}` access to SQL BLOBs.
### Design of Rows and Row ### Design of Rows and Row