mirror of
https://github.com/nushell/nushell.git
synced 2025-05-03 09:34:27 +02:00
- fixes #12764 Replaced the custom logic with values_to_sql method that is already used in crate::database. This will ensure that handling of parameters is the same between sqlite and stor.
8 lines
236 B
Rust
8 lines
236 B
Rust
pub mod definitions;
|
|
pub mod sqlite;
|
|
|
|
pub use sqlite::{
|
|
convert_sqlite_row_to_nu_value, convert_sqlite_value_to_nu_value, open_connection_in_memory,
|
|
open_connection_in_memory_custom, values_to_sql, SQLiteDatabase, MEMORY_DB,
|
|
};
|