Commit Graph

  • b1cde705be Rename SqliteLoadExtensionGuard -> LoadExtensionGuard. John Gallagher 2015-12-12 14:20:11 -0500
  • 3d15a8a15c Rename SqliteTransaction* -> Transaction*. John Gallagher 2015-12-12 14:17:43 -0500
  • 9cac56d6a2 Rename SqliteOpenFlags -> OpenFlags. John Gallagher 2015-12-12 14:13:29 -0500
  • ea5cb41bbf Rename SqliteRow -> Row. John Gallagher 2015-12-12 14:11:24 -0500
  • b932640181 Rename SqliteRows -> Rows. John Gallagher 2015-12-12 14:09:37 -0500
  • ec654352d9 Rename SqliteStatement -> Statement. John Gallagher 2015-12-12 14:08:04 -0500
  • eb60bb3111 Rename SqliteResult -> Result. John Gallagher 2015-12-12 14:06:03 -0500
  • f0b6bf9152 Rename SqliteError -> Error. John Gallagher 2015-12-12 13:53:58 -0500
  • 4327a84edb Rename SqliteConnection -> Connection. John Gallagher 2015-12-12 13:50:12 -0500
  • 87299009ba Merge pull request #95 from jgallagher/gwenn-functions John Gallagher 2015-12-12 10:46:55 -0500
  • 4830b0a648 Add unit test for function with variable number of arguments John Gallagher 2015-12-12 10:44:08 -0500
  • 5039e57637 Merge branch 'master' into gwenn-functions John Gallagher 2015-12-11 19:21:39 -0500
  • 36be658e42 Merge pull request #94 from jgallagher/gwenn-named-param John Gallagher 2015-12-11 19:21:01 -0500
  • 5fdb2e1fda Allow named parameters to be omitted. John Gallagher 2015-12-11 16:34:58 -0500
  • caf1e95e31 Add functions feature to travis and Changelog. John Gallagher 2015-12-11 16:28:46 -0500
  • 3bcde498bd Expand comments. John Gallagher 2015-12-11 16:27:39 -0500
  • ecef092303 Add remove_function to clear a user-defined function. John Gallagher 2015-12-11 15:47:52 -0500
  • 3baf7b10f8 Add unit test demonstrating a closure-based UDF. John Gallagher 2015-12-11 15:35:59 -0500
  • 3913e89f94 Allow user scalar functions to return results. John Gallagher 2015-12-11 15:08:40 -0500
  • 81ec7fe7cd Add get to function::Context. John Gallagher 2015-12-11 14:46:28 -0500
  • 94d40c41c7 Introduce Context wrapper for user-defined functions. John Gallagher 2015-12-11 13:54:08 -0500
  • 29494f46f6 Let create_scalar_function take an FnMut instead of a extern "C" fn. John Gallagher 2015-12-11 12:01:05 -0500
  • aae431760e rustfmt - no code changes John Gallagher 2015-12-11 11:41:40 -0500
  • 0c3575e845 Fix segfault in regexp user function test John Gallagher 2015-12-11 11:40:53 -0500
  • 9f5f4ac385 Merge branch 'functions' of https://github.com/gwenn/rusqlite into gwenn-functions John Gallagher 2015-12-11 11:31:25 -0500
  • 489b7df451 Add named parameters to Changelog John Gallagher 2015-12-10 20:51:16 -0500
  • 599e30f372 Rename bind_named_parameters -> bind_parameters_named. John Gallagher 2015-12-10 20:49:47 -0500
  • 0051ff47a6 Refactor: Extract match to get an expected row into its own method. John Gallagher 2015-12-10 20:48:38 -0500
  • b7468b2c4b Make parameter_index return a Result<Option<_>> instead of squashing string conversion errors into None. John Gallagher 2015-12-10 20:41:31 -0500
  • 186cb5893b Rename query_named_row -> query_row_named. John Gallagher 2015-12-10 20:31:07 -0500
  • 8d4b3e6a31 Remove commented-out code John Gallagher 2015-12-10 20:30:43 -0500
  • 21528452d7 Clean up comments on named parameter methods John Gallagher 2015-12-10 20:30:05 -0500
  • 7338f23d4b Add extra assertions around binding named parameters John Gallagher 2015-12-10 20:27:09 -0500
  • 2f220161a5 Add extra check to named-parameter insertion unit test John Gallagher 2015-12-10 20:16:46 -0500
  • ab6ab3b2e9 Run rustfmt on named_params.rs John Gallagher 2015-12-10 17:01:19 -0500
  • 53979407c5 Merge branch 'named-param' of https://github.com/gwenn/rusqlite into gwenn-named-param John Gallagher 2015-12-10 16:53:43 -0500
  • a1f1480b18 Run rustfmt on all crate files John Gallagher 2015-12-10 16:48:09 -0500
  • 26a7930d73 Merge pull request #93 from jgallagher/online-backup John Gallagher 2015-12-10 16:36:15 -0500
  • 09825dbd90 Add feature tests to Travis John Gallagher 2015-12-10 16:22:01 -0500
  • 49951ca3be Add backup and restore methods to SqliteConnection (behind backup Cargo feature) John Gallagher 2015-12-10 16:06:16 -0500
  • 3781b8f47f rustfmt backup.rs John Gallagher 2015-12-10 13:13:15 -0500
  • 8c2e0a0da7 Rename BackupName -> DatabaseName John Gallagher 2015-12-09 16:27:18 -0500
  • 5ebbf5a1a2 Use &str instead of String inside BackupName John Gallagher 2015-12-09 00:48:40 -0500
  • e2f8e73635 Initial implementation of the online backup API. John Gallagher 2015-12-09 00:19:59 -0500
  • e71104e6c3 Bump version to 0.5.0 John Gallagher 2015-12-08 21:30:19 -0500
  • 51a542c0f7 Fix broken load_extension feature John Gallagher 2015-12-08 21:15:23 -0500
  • c99ecd6681 Merge pull request #88 from jgallagher/flexible-build-script John Gallagher 2015-12-07 11:22:08 -0500
  • e0b3ad7c9b Merge remote-tracking branch 'origin/master' into flexible-build-script John Gallagher 2015-12-07 11:15:21 -0500
  • fe6afe2a94 Merge branch 'master' of https://github.com/jgallagher/rusqlite into functions Gwenael Treguier 2015-12-06 21:33:21 +0100
  • 7ab79d6de6 Add Failure documentation. Gwenael Treguier 2015-12-06 19:57:20 +0100
  • da69584b9f Add Example and Failure documentation Gwenael Treguier 2015-12-05 13:43:03 +0100
  • 5b86871d76 Merge branch 'master' of https://github.com/jgallagher/rusqlite into named-param Gwenael Treguier 2015-12-05 12:32:16 +0100
  • fa03bcd564 Fix use declaration. Gwenael Treguier 2015-12-05 12:28:12 +0100
  • 18ff9cf4ca Merge branch 'master' of https://github.com/jgallagher/rusqlite into stmt-cache Gwenael Treguier 2015-12-05 11:58:06 +0100
  • 2cf0455f8d Add Failure documentation Gwenael Treguier 2015-12-05 11:28:33 +0100
  • cef1d3285e Merge branch 'master' of https://github.com/jgallagher/rusqlite into blob Gwenael Treguier 2015-12-05 11:11:23 +0100
  • ac08a18c43 Merge pull request #86 from jgallagher/gwenn-trace_extension John Gallagher 2015-12-01 13:19:43 -0500
  • c2b9ae1b98 Merge pull request #91 from jgallagher/document-failures John Gallagher 2015-12-01 12:11:26 -0500
  • 3d654aeed1 Add more documentation for failure modes of functions that return s John Gallagher 2015-12-01 12:05:29 -0500
  • 9a4503ad5f Merge pull request #90 from jgallagher/fix-str-error-messages John Gallagher 2015-12-01 11:49:37 -0500
  • 1af3fcd053 Fix error messages when failing to convert paths and strings to C-compatible versions John Gallagher 2015-12-01 11:47:55 -0500
  • 7fbe1172e2 Make libsqlite3-sys's build script slightly more intelligent. John Gallagher 2015-12-01 11:33:48 -0500
  • 49cb1efe62 Merge branch 'master' into gwenn-trace_extension John Gallagher 2015-12-01 11:13:23 -0500
  • 992f01f03b Merge pull request #87 from jgallagher/relax-static-bound-on-query-map John Gallagher 2015-12-01 11:11:59 -0500
  • 635616842c Remove 'static requirement on output of closure given to query_map and query_and_then. John Gallagher 2015-12-01 10:55:01 -0500
  • 86165725de Add krdln to CONTRIBUTORS John Gallagher 2015-12-01 10:43:55 -0500
  • 33573fa0f7 Merge pull request #85 from krdln/update-libc John Gallagher 2015-12-01 10:44:57 -0500
  • cba64a7dee Add trace feature to Changelog John Gallagher 2015-12-01 10:37:01 -0500
  • e6fef5107d Change profile() to take a Rust fn instead of an extern "C" fn. John Gallagher 2015-12-01 10:34:18 -0500
  • 8e31a64dde Update Cargo.tomls to libc ~0.2 Michał Krasnoborski 2015-12-01 06:18:44 +0000
  • ace5b1ebdc Change trace() to take a Rust fn instead of an extern "C" fn. John Gallagher 2015-11-30 16:33:47 -0500
  • dbfa6ca31f Change config_log to take a Rust fn instead of an extern "C" fn. John Gallagher 2015-11-30 15:29:50 -0500
  • eaf080261b Merge branch 'trace_extension' of https://github.com/gwenn/rusqlite into gwenn-trace_extension John Gallagher 2015-11-30 13:13:43 -0500
  • 30ce399e91 Merge pull request #83 from jgallagher/gwenn-debug John Gallagher 2015-11-30 12:19:28 -0500
  • 0729e195c3 Use debug_struct for formatting. Gwenael Treguier 2015-11-11 15:14:31 +0100
  • 20c1213482 Remove feature duration. Gwenael Treguier 2015-11-11 15:03:07 +0100
  • a2327fb048 Revert "Remove usage of unstable library feature 'duration'" Gwenael Treguier 2015-11-11 15:00:39 +0100
  • 4d2d8b43e6 Clean use statement. Gwenael Treguier 2015-11-11 14:45:25 +0100
  • e052053a79 Merge remote-tracking branch 'jgallagher/master' into stmt-cache Gwenael Treguier 2015-11-11 14:42:08 +0100
  • ddd976c158 Cleanup use statements. Gwenael Treguier 2015-11-11 14:39:54 +0100
  • db7345624f Merge remote-tracking branch 'jgallagher/master' into named-param Gwenael Treguier 2015-11-11 14:39:15 +0100
  • 50bfba1e1d Ignore test_log. Gwenael Treguier 2015-11-11 14:29:40 +0100
  • 8bff40b6d6 Merge remote-tracking branch 'jgallagher/master' into trace_extension Gwenael Treguier 2015-11-11 14:28:21 +0100
  • 7586556db5 Add to CONTRIBUTORS John Gallagher 2015-11-03 11:37:23 -0500
  • cd2919cce1 Merge pull request #76 from jgallagher/update-travis-infrastructure John Gallagher 2015-11-03 11:35:31 -0500
  • 270abfc44f Update to travis CI's container-based infrastructure John Gallagher 2015-11-03 11:33:03 -0500
  • ad80b8fb94 Merge pull request #75 from jgallagher/rfc1214 John Gallagher 2015-11-03 11:32:38 -0500
  • 78979c44ee Bump version to 0.4.0 John Gallagher 2015-11-03 11:29:02 -0500
  • 420c4d4d9f Address RFC 1214 warning John Gallagher 2015-11-03 11:27:52 -0500
  • 3e8530a364 Merge pull request #71 from jgallagher/gwenn-reset_asap John Gallagher 2015-09-22 10:22:10 -0700
  • b41275cbc8 Update Changelog and Cargo.toml to 0.3.1 John Gallagher 2015-09-22 10:18:26 -0700
  • b1350c4c14 Merge branch 'master' into gwenn-reset_asap John Gallagher 2015-09-22 10:16:52 -0700
  • c3bc8b594a Bump version to 0.3.0. John Gallagher 2015-09-21 10:39:13 -0400
  • d23667870e Merge pull request #70 from jgallagher/pfernie-master John Gallagher 2015-09-21 10:38:07 -0400
  • 7ee69fe103 Remove get_opt (superceded by get_checked). John Gallagher 2015-09-21 10:31:11 -0400
  • 1918dc14d0 Add tests for query_row_and_then(). John Gallagher 2015-09-20 21:30:40 -0400
  • 072a336b33 Refactor: Reduce duplication across query_and_then tests. John Gallagher 2015-09-20 21:28:50 -0400
  • 0cbb2743e3 Merge branch 'master' of https://github.com/pfernie/rusqlite into pfernie-master John Gallagher 2015-09-20 21:07:39 -0400
  • 59a3b0ddb5 Merge pull request #62 from gwenn/too-big John Gallagher 2015-09-20 20:57:28 -0400
  • 69f68b1347 Merge pull request #69 from jgallagher/gwenn-debug_verbose John Gallagher 2015-09-20 20:51:17 -0400