gwenn
gwenn
* https://sqlite.org/lang_altertable.html#altertabdropcol org.sqlite.driver.DbMeta#supportsAlterTableWithDropColumn * https://sqlite.org/lang_returning.html org.sqlite.driver.Conn#prepareStatement(java.lang.String, int) org.sqlite.driver.Conn#prepareStatement(java.lang.String, int[]) // not supported ? org.sqlite.driver.Conn#prepareStatement(java.lang.String, java.lang.String[]) org.sqlite.driver.Stmt#getGeneratedKeys org.sqlite.driver.Stmt#executeUpdate(java.lang.String, int) org.sqlite.driver.Stmt#executeUpdate(java.lang.String, int[]) // not supported ? org.sqlite.driver.Stmt#executeUpdate(java.lang.String, java.lang.String[]) org.sqlite.driver.Stmt#execute(java.lang.String, int) org.sqlite.driver.Stmt#execute(java.lang.String, int[])...
https://github.com/eclipse-ee4j/jakartaee-tck/tree/master/src/com/sun/ts/tests/jdbc/ee
Currently, tarpaulin is used: https://github.com/rusqlite/rusqlite/blob/master/.github/workflows/main.yml#L197-L212 vs https://www.reddit.com/r/rust/comments/v1j9fy/kudos_to_cargollvmcov_really_useful_coverage/
Fix #1157 Breaking changes.
See https://crates.io/crates/libsqlite3-sys
* `Rows::map` result is useable only if `FallibleIterator` trait is imported explicitly. `Map` is not public (see also #685). * `Rows::map` hides `FallibleStreamingIterator::map`.
https://www.reddit.com/r/rust/comments/e1az07/fyi_if_you_have_a_crate_that_involves_a_lot_of/ > If you have a crate that involves a lot of unsafe code, you might consider adding Miri to your CI configuration We do have a lot of unsafe...
See https://www.sqlite.org/c3ref/system_errno.html When `sqlite3_open_v2()` fails with `SQLITE_CANTOPEN` or `SQLITE_IOERR` (and not `SQLITE_IOERR_NOMEM`), use `sqlite3_system_errno` or https://doc.rust-lang.org/std/io/struct.Error.html#method.last_os_error ?