nushell/crates/nu-command/src/database/values/mod.rs
Maxime Jacob cd381b74e0
Fix improperly escaped strings in stor insert (#12820)
- 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.
2024-05-13 20:22:39 -05:00

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,
};