Merge pull request #86 from jgallagher/gwenn-trace_extension

Add Rust interface to SQLite's logging, tracing, and profiling hooks
This commit is contained in:
John Gallagher
2015-12-01 13:19:43 -05:00
6 changed files with 210 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
# Version UPCOMDING (TBD)
# Version UPCOMING (TBD)
* Adds `trace` feature that allows the use of SQLite's logging, tracing, and profiling hooks.
* Slight change to the closure types passed to `query_map` and `query_and_then`:
* Remove the `'static` requirement on the closure's output type.
* Give the closure a `&SqliteRow` instead of a `SqliteRow`.