mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
ac08a18c43
Add Rust interface to SQLite's logging, tracing, and profiling hooks
3.9 KiB
3.9 KiB
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
andquery_and_then
:- Remove the
'static
requirement on the closure's output type. - Give the closure a
&SqliteRow
instead of aSqliteRow
.
- Remove the
- Add more documentation for failure modes of functions that return
SqliteResult
s.
Version 0.4.0 (2015-11-03)
- Adds
Sized
bound toFromSql
trait as required by RFC 1214.
Version 0.3.1 (2015-09-22)
- Reset underlying SQLite statements as soon as possible after executing, as recommended by http://www.sqlite.org/cvstrac/wiki?p=ScrollingCursor.
Version 0.3.0 (2015-09-21)
- Removes
get_opt
. Useget_checked
instead. - Add
query_row_and_then
andquery_and_then
convenience functions. These are analogous toquery_row
andquery_map
but allow functions that can fail by returningResult
s. - Relax uses of
P: AsRef<...>
from&P
toP
. - Add additional error check for calling
execute
whenquery
was intended. - Improve debug formatting of
SqliteStatement
andSqliteConnection
. - Changes documentation of
get_checked
to correctly indicate that it returns errors (not panics) when given invalid types or column indices.
Version 0.2.0 (2015-07-26)
- Add
column_names()
toSqliteStatement
. - By default, include
SQLITE_OPEN_NO_MUTEX
andSQLITE_OPEN_URI
flags when opening a new conneciton. - Fix generated bindings (e.g.,
sqlite3_exec
was wrong). - Use now-generated
sqlite3_destructor_type
to defineSQLITE_STATIC
andSQLITE_TRANSIENT
.
Version 0.1.0 (2015-05-11)
- [breaking-change] Modify
query_row
to return aResult
instead of unwrapping. - Deprecate
query_row_safe
(usequery_row
instead). - Add
query_map
. - Add
get_checked
, which asks SQLite to do some basic type-checking of columns.
Version 0.0.17 (2015-04-03)
- Publish version that builds on stable rust (beta). This version lives on the
stable
branch. Development continues onmaster
and still requires a nightly version of Rust.
Version 0.0.16
- Updates to track rustc nightly.
Version 0.0.15
- Make SqliteConnection
Send
.
Version 0.0.14
- Remove unneeded features (also involves switching to
libc
crate).
Version 0.0.13 (2015-03-26)
- Updates to track rustc nightly.
Version 0.0.12 (2015-03-24)
- Updates to track rustc stabilization.
Version 0.0.11 (2015-03-12)
- Reexport
sqlite3_stmt
fromlibsqlite3-sys
for easierimpl
-ing ofToSql
andFromSql
. - Updates to track latest rustc changes.
- Update dependency versions.
Version 0.0.10 (2015-02-23)
- BREAKING CHANGE:
open
now expects aPath
rather than astr
. There is a separateopen_in_memory
constructor for opening in-memory databases. - Added the ability to load SQLite extensions. This is behind the
load_extension
Cargo feature, because not all builds of sqlite3 include this ability. Notably the default libsqlite3 that ships with OS X 10.10 does not support extensions.
Version 0.0.9 (2015-02-13)
- Updates to track latest rustc changes.
- Implement standard
Error
trait forSqliteError
.
Version 0.0.8 (2015-02-04)
- Updates to track latest rustc changes.
Version 0.0.7 (2015-01-20)
- Use external bitflags from crates.io.
Version 0.0.6 (2015-01-10)
- Updates to track latest rustc changes (1.0.0-alpha).
- Add
query_row_safe
, aSqliteResult
-returning variant ofquery_row
.
Version 0.0.5 (2015-01-07)
- Updates to track latest rustc changes (closure syntax).
- Updates to track latest rust stdlib changes (
std::c_str
->std::ffi
).
Version 0.0.4 (2015-01-05)
- Updates to track latest rustc changes.
Version 0.0.3 (2014-12-23)
- Updates to track latest rustc changes.
- Add call to
sqlite3_busy_timeout
.
Version 0.0.2 (2014-12-04)
- Remove use of now-deprecated
std::vec::raw::from_buf
. - Update to latest version of
time
crate.
Version 0.0.1 (2014-11-21)
- Initial release