From f8540062f863a265738a9b8dccfce189c1c033e8 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 14 Dec 2015 16:24:11 -0500 Subject: [PATCH] Add blob feature to README and Changelog --- Changelog.md | 1 + README.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Changelog.md b/Changelog.md index 00f2b20..e47480a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -18,6 +18,7 @@ The old, prefixed names are still exported but are deprecated. * Adds a variety of `..._named` methods for executing queries using named placeholder parameters. * 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 open `SqliteConnection`s. diff --git a/README.md b/README.md index 30e91c7..a813174 100644 --- a/README.md +++ b/README.md @@ -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. * [`trace`](http://jgallagher.github.io/rusqlite/rusqlite/trace/index.html) 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