gwenn
78e4036f90
Fix FromSql impl for OffsetDateTime
...
See 'Missing datetime format support' #968
2021-06-11 21:42:02 +02:00
dubiousjim
8770e7d443
Add bundle-sqlcipher and bundle-ssl ( #860 )
...
Co-authored-by: Thom Chiovoloni <chiovolonit@gmail.com>
2021-06-02 12:07:56 -07:00
Thom Chiovoloni
a2d48a8c15
Add a function to return the path of a Connection ( #963 )
2021-05-29 22:48:48 -07:00
gwenn
df02910660
Implement AsRef<Statement> for Row(s) ( #887 )
2021-05-26 14:51:28 +02:00
Nick Hynes
48e7561af9
Add support for authorizer hook ( #946 )
...
Co-authored-by: Thom Chiovoloni <chiovolonit@gmail.com>
2021-05-23 11:55:07 -07:00
Midas Lambrichts
b51b541d7f
Made preupdate_hook module public.
2021-05-23 12:14:02 +02:00
gwenn
1985e78fa6
Fix clippy warnings ( #959 )
...
Fix clippy warnings
2021-05-13 08:58:46 +02:00
Thom Chiovoloni
cdce75328e
Fix build on some older versions of Rust
2021-05-08 22:56:19 -07:00
gwenn
cd40cc330b
Rustfmt ( #956 )
2021-05-07 19:39:53 +02:00
Dirk Stolle
c33d6bfad3
fix several typos
2021-05-02 23:03:10 -07:00
Nick Hynes
b8b1138fcf
Add Statement::parameter_name
2021-04-26 01:16:10 -07:00
Midas Lambrichts
560ae50656
Deduplicate accessing in different cases.
...
Function duplication for delete-update and insert-update has been moved,
as everything available in insert or delete is available for update.
2021-04-11 12:33:08 +02:00
Midas Lambrichts
e81c139faf
Removed explicit lifetimes to make clippy happy.
2021-04-08 21:56:32 +02:00
Midas Lambrichts
55dc6e1979
Merge branch 'master' into preupdate_hook
2021-04-08 21:51:44 +02:00
gwenn
6c956bb270
Test that extra_check feature works with RETURNING statements ( #932 )
...
Test that extra_check feature works with RETURNING statements
2021-04-04 12:47:21 +02:00
gwenn
517ef2beae
Prepare release 0.25.0 ( #930 )
...
rusqlite 0.25.0
libsqlite3-sys 0.22.0
Also fix missing README for libsqlite3-sys crate
And fix a typo.
2021-04-03 20:07:53 +02:00
gwenn
c4b398f468
Doctest column name reference ( #918 )
...
* Doctest column name reference
* Document rusqlite assumption on column name reference
And move doctest as a test.
* Document when columns metadata should be extracted.
* Rustfmt doc (wrap_comments)
2021-04-03 11:03:50 +02:00
Nick Hynes
ecbc0aa767
Leniently parse rfc3339 timezones ( #928 )
2021-04-03 10:56:11 +02:00
gwenn
ed3bfbdf9d
Silent some clippy warnings ( #924 )
...
* allow(clippy::upper_case_acronyms) for rust enum entries that match
SQLite constants.
* allow(clippy::needless_return) for collation_needed_callback until we
find a way to propagate the error.
2021-03-25 21:06:46 +01:00
Joshua C. Randall
1b8af31f32
silence clippy::needless-update warning whe the ffi bindings specify exactly the set of sqlite3_module fields we explicitly list
2021-03-08 20:19:25 +00:00
gwenn
c9cc639080
Add tests adapted from official SQLite tests
2021-03-06 12:55:25 +01:00
gwenn
73bf68f851
Merge remote-tracking branch 'upstream/master' into series
2021-03-06 12:38:10 +01:00
Thom Chiovoloni
bd736b2634
Fix nightly non_fmt_panic warning
2021-03-02 18:19:11 -08:00
gwenn
e1eed94bef
Fix clippy warnings
...
Allow `unnecessary_wraps` for `check_update` and `check_no_tail`.
Remove `check_readonly` (`sqlite3-parser` may help).
2021-02-28 13:19:58 +01:00
gwenn
5e79126a60
Rustfmt
2021-02-28 12:58:59 +01:00
gwenn
1acd753a63
Sync series with official source
2021-02-28 12:43:46 +01:00
Midas Lambrichts
9187b3e960
Wrap the unsafe functions to the special preupdate hook functions in a safe wrapper.
2021-02-26 21:02:06 +01:00
Midas Lambrichts
ceff6cb8b1
Extracted the preupdate_hook to a separate cargo feature.
...
Moved hooks and preupdate_hook into their own modules inside hooks.rs
Also created an initial way to access the functions that are available
during the callback.
2021-02-06 12:20:05 +01:00
Midas Lambrichts
d88f49f830
Prefix unused variable with _
2021-02-03 18:50:01 +01:00
Midas Lambrichts
86199e1b78
Added an initial proposal for the preupdate hook.
...
Created an initial proposal/direction for the preupdate hook. It is
heavily based on the update hook, with only minor modifications to that
code. This means that it entirely translate the original C API.
2021-02-02 22:00:19 +01:00
Thom Chiovoloni
19b0772f3f
Make it clear bind_in is not public, and inline functions passing large arrays by value to avoid too much copying
2021-01-31 16:18:48 -08:00
gwenn
91d6ce7a52
Fix unstable tests when machine is slow
2021-01-30 12:55:00 +01:00
gwenn
4f175d5748
Fix DateTime format
2021-01-29 22:03:50 +01:00
gwenn
afcdc2b43a
Use most concise syntax for params
2021-01-19 21:16:08 +01:00
gwenn
70742651b1
Fix CI build
...
clippy::unnecessary_wraps is not stable yet
2021-01-02 13:43:12 +01:00
gwenn
2319165b59
Fix clippy warnings
2021-01-02 10:49:29 +01:00
gwenn
e154ccb606
Rename get_raw to get_ref_unwrap and get_raw_checked to get_ref ( #838 )
...
* test `From<FromSqlError> for Error`
* Rename get_raw to get_ref_unwrap and get_raw_checked to get_ref
2020-12-22 21:34:30 +01:00
Thom Chiovoloni
73f59a3a38
Merge pull request #866 from phiresky/pass-context-to-aggregate
2020-12-19 12:47:13 -08:00
phiresky
0221266f2e
make init return result
2020-12-19 12:15:18 +01:00
phiresky
7c83680231
fix lints
2020-12-18 23:11:23 +01:00
phiresky
d4f8242d0c
format
2020-12-18 13:54:38 +01:00
phiresky
9d2e936eb8
formatting and tests
2020-12-18 13:53:13 +01:00
phiresky
eff747b756
format
2020-12-18 13:52:07 +01:00
phiresky
25c817413b
pass context to finalize function
2020-12-18 13:30:11 +01:00
phiresky
1309c563c7
add get_connection method to function context
2020-12-18 13:24:03 +01:00
phiresky
2cffca874c
pass context to aggregate init function
2020-12-18 13:11:39 +01:00
Mahmoud Al-Qudsi
73754bbe24
[docs] Document default busy_timeout/busy_handler
...
Include a note in the documentation for both `busy_handler()` and
`busy_timeout()` explaining the current default behavior (with a
disclaimer indicating that this behavior should not be relied upon as it
is an implementation detail that may change).
2020-12-02 17:20:50 -06:00
Mahmoud Al-Qudsi
2dab6d8364
[docs] Fix over-long monospacing of SQLITE_BUSY
2020-12-02 17:06:46 -06:00
gwenn
3aeb5d7e08
Remove obsolete doc section
...
`FromSql` / `ToSql` are now implemented for i64 and usize
2020-11-22 09:37:52 +01:00
gwenn
32ee895b63
Remove some usages of params! / NO_PARAMS
2020-11-22 09:37:00 +01:00