mirror of
https://github.com/nushell/nushell.git
synced 2025-05-13 14:34:28 +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.
16 lines
406 B
Rust
16 lines
406 B
Rust
mod commands;
|
|
mod values;
|
|
|
|
use commands::add_commands_decls;
|
|
|
|
pub use values::{
|
|
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,
|
|
};
|
|
|
|
use nu_protocol::engine::StateWorkingSet;
|
|
|
|
pub fn add_database_decls(working_set: &mut StateWorkingSet) {
|
|
add_commands_decls(working_set);
|
|
}
|