mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Update Changelog with bundled
feature
This commit is contained in:
parent
432966ac77
commit
83b481aade
@ -15,6 +15,8 @@
|
||||
* Added `#[deprecated(since = "...", note = "...")]` flags (new in Rust 1.9 for libraries) to
|
||||
all deprecated APIs.
|
||||
* Added `query_row` convenience function to `Statement`.
|
||||
* Added `bundled` feature which will build SQLite from source instead of attempting to link
|
||||
against a SQLite that already exists on the system.
|
||||
* Fixed a bug where using cached prepared statements resulted in attempting to close a connection
|
||||
failing with `DatabaseBusy`; see https://github.com/jgallagher/rusqlite/issues/186.
|
||||
|
||||
|
@ -78,7 +78,7 @@ features](http://doc.crates.io/manifest.html#the-features-section). They are:
|
||||
* `serde_json` implements [`FromSql`](http://jgallagher.github.io/rusqlite/rusqlite/types/trait.FromSql.html)
|
||||
and [`ToSql`](http://jgallagher.github.io/rusqlite/rusqlite/types/trait.ToSql.html) for the
|
||||
`Value` type from the [`serde_json` crate](https://crates.io/crates/serde_json).
|
||||
* `bundled` uses a bundled version of sqlite3. This is a good option for cases where linking to sqlite3 is complicated, like for example Windows.
|
||||
* `bundled` uses a bundled version of sqlite3. This is a good option for cases where linking to sqlite3 is complicated, such as Windows.
|
||||
|
||||
## Author
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user