2019-02-03 16:17:37 +08:00
|
|
|
//! Pragma helpers
|
|
|
|
|
|
|
|
use std::ops::Deref;
|
|
|
|
|
|
|
|
use crate::error::Error;
|
|
|
|
use crate::ffi;
|
|
|
|
use crate::types::{ToSql, ToSqlOutput, ValueRef};
|
2020-11-03 17:32:46 +08:00
|
|
|
use crate::{Connection, DatabaseName, Result, Row};
|
2019-02-03 16:17:37 +08:00
|
|
|
|
|
|
|
pub struct Sql {
|
|
|
|
buf: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sql {
|
|
|
|
pub fn new() -> Sql {
|
|
|
|
Sql { buf: String::new() }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_pragma(
|
|
|
|
&mut self,
|
|
|
|
schema_name: Option<DatabaseName<'_>>,
|
|
|
|
pragma_name: &str,
|
|
|
|
) -> Result<()> {
|
|
|
|
self.push_keyword("PRAGMA")?;
|
|
|
|
self.push_space();
|
|
|
|
if let Some(schema_name) = schema_name {
|
|
|
|
self.push_schema_name(schema_name);
|
|
|
|
self.push_dot();
|
|
|
|
}
|
|
|
|
self.push_keyword(pragma_name)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_keyword(&mut self, keyword: &str) -> Result<()> {
|
|
|
|
if !keyword.is_empty() && is_identifier(keyword) {
|
|
|
|
self.buf.push_str(keyword);
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::SqliteFailure(
|
|
|
|
ffi::Error::new(ffi::SQLITE_MISUSE),
|
2022-10-29 01:02:49 +08:00
|
|
|
Some(format!("Invalid keyword \"{keyword}\"")),
|
2019-02-03 16:17:37 +08:00
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_schema_name(&mut self, schema_name: DatabaseName<'_>) {
|
|
|
|
match schema_name {
|
|
|
|
DatabaseName::Main => self.buf.push_str("main"),
|
|
|
|
DatabaseName::Temp => self.buf.push_str("temp"),
|
|
|
|
DatabaseName::Attached(s) => self.push_identifier(s),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_identifier(&mut self, s: &str) {
|
|
|
|
if is_identifier(s) {
|
|
|
|
self.buf.push_str(s);
|
|
|
|
} else {
|
|
|
|
self.wrap_and_escape(s, '"');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_value(&mut self, value: &dyn ToSql) -> Result<()> {
|
|
|
|
let value = value.to_sql()?;
|
|
|
|
let value = match value {
|
|
|
|
ToSqlOutput::Borrowed(v) => v,
|
|
|
|
ToSqlOutput::Owned(ref v) => ValueRef::from(v),
|
|
|
|
#[cfg(feature = "blob")]
|
|
|
|
ToSqlOutput::ZeroBlob(_) => {
|
|
|
|
return Err(Error::SqliteFailure(
|
|
|
|
ffi::Error::new(ffi::SQLITE_MISUSE),
|
2022-10-29 01:02:49 +08:00
|
|
|
Some(format!("Unsupported value \"{value:?}\"")),
|
2019-02-03 16:17:37 +08:00
|
|
|
));
|
|
|
|
}
|
|
|
|
#[cfg(feature = "array")]
|
|
|
|
ToSqlOutput::Array(_) => {
|
|
|
|
return Err(Error::SqliteFailure(
|
|
|
|
ffi::Error::new(ffi::SQLITE_MISUSE),
|
2022-10-29 01:02:49 +08:00
|
|
|
Some(format!("Unsupported value \"{value:?}\"")),
|
2019-02-03 16:17:37 +08:00
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
match value {
|
|
|
|
ValueRef::Integer(i) => {
|
|
|
|
self.push_int(i);
|
|
|
|
}
|
|
|
|
ValueRef::Real(r) => {
|
|
|
|
self.push_real(r);
|
|
|
|
}
|
|
|
|
ValueRef::Text(s) => {
|
2019-07-25 02:46:53 +08:00
|
|
|
let s = std::str::from_utf8(s)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
self.push_string_literal(s);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(Error::SqliteFailure(
|
|
|
|
ffi::Error::new(ffi::SQLITE_MISUSE),
|
2022-10-29 01:02:49 +08:00
|
|
|
Some(format!("Unsupported value \"{value:?}\"")),
|
2019-02-03 16:17:37 +08:00
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_string_literal(&mut self, s: &str) {
|
|
|
|
self.wrap_and_escape(s, '\'');
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_int(&mut self, i: i64) {
|
|
|
|
self.buf.push_str(&i.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_real(&mut self, f: f64) {
|
|
|
|
self.buf.push_str(&f.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_space(&mut self) {
|
|
|
|
self.buf.push(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_dot(&mut self) {
|
|
|
|
self.buf.push('.');
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_equal_sign(&mut self) {
|
|
|
|
self.buf.push('=');
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn open_brace(&mut self) {
|
|
|
|
self.buf.push('(');
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn close_brace(&mut self) {
|
|
|
|
self.buf.push(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_str(&self) -> &str {
|
|
|
|
&self.buf
|
|
|
|
}
|
|
|
|
|
|
|
|
fn wrap_and_escape(&mut self, s: &str, quote: char) {
|
|
|
|
self.buf.push(quote);
|
|
|
|
let chars = s.chars();
|
|
|
|
for ch in chars {
|
|
|
|
// escape `quote` by doubling it
|
|
|
|
if ch == quote {
|
|
|
|
self.buf.push(ch);
|
|
|
|
}
|
2022-01-06 02:53:49 +08:00
|
|
|
self.buf.push(ch);
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
self.buf.push(quote);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for Sql {
|
|
|
|
type Target = str;
|
|
|
|
|
|
|
|
fn deref(&self) -> &str {
|
|
|
|
self.as_str()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Connection {
|
|
|
|
/// Query the current value of `pragma_name`.
|
|
|
|
///
|
|
|
|
/// Some pragmas will return multiple rows/values which cannot be retrieved
|
|
|
|
/// with this method.
|
2019-02-15 03:24:16 +08:00
|
|
|
///
|
|
|
|
/// Prefer [PRAGMA function](https://sqlite.org/pragma.html#pragfunc) introduced in SQLite 3.20:
|
|
|
|
/// `SELECT user_version FROM pragma_user_version;`
|
2019-02-03 16:17:37 +08:00
|
|
|
pub fn pragma_query_value<T, F>(
|
|
|
|
&self,
|
|
|
|
schema_name: Option<DatabaseName<'_>>,
|
|
|
|
pragma_name: &str,
|
|
|
|
f: F,
|
|
|
|
) -> Result<T>
|
|
|
|
where
|
2019-03-10 18:12:14 +08:00
|
|
|
F: FnOnce(&Row<'_>) -> Result<T>,
|
2019-02-03 16:17:37 +08:00
|
|
|
{
|
|
|
|
let mut query = Sql::new();
|
|
|
|
query.push_pragma(schema_name, pragma_name)?;
|
2020-11-03 17:32:46 +08:00
|
|
|
self.query_row(&query, [], f)
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Query the current rows/values of `pragma_name`.
|
2019-02-15 03:24:16 +08:00
|
|
|
///
|
|
|
|
/// Prefer [PRAGMA function](https://sqlite.org/pragma.html#pragfunc) introduced in SQLite 3.20:
|
|
|
|
/// `SELECT * FROM pragma_collation_list;`
|
2019-02-03 16:17:37 +08:00
|
|
|
pub fn pragma_query<F>(
|
|
|
|
&self,
|
|
|
|
schema_name: Option<DatabaseName<'_>>,
|
|
|
|
pragma_name: &str,
|
|
|
|
mut f: F,
|
|
|
|
) -> Result<()>
|
|
|
|
where
|
2019-03-10 18:12:14 +08:00
|
|
|
F: FnMut(&Row<'_>) -> Result<()>,
|
2019-02-03 16:17:37 +08:00
|
|
|
{
|
|
|
|
let mut query = Sql::new();
|
|
|
|
query.push_pragma(schema_name, pragma_name)?;
|
|
|
|
let mut stmt = self.prepare(&query)?;
|
2020-11-03 17:32:46 +08:00
|
|
|
let mut rows = stmt.query([])?;
|
2019-03-10 18:12:14 +08:00
|
|
|
while let Some(result_row) = rows.next()? {
|
|
|
|
let row = result_row;
|
2021-06-17 01:22:31 +08:00
|
|
|
f(row)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Query the current value(s) of `pragma_name` associated to
|
|
|
|
/// `pragma_value`.
|
|
|
|
///
|
|
|
|
/// This method can be used with query-only pragmas which need an argument
|
2019-02-15 03:24:16 +08:00
|
|
|
/// (e.g. `table_info('one_tbl')`) or pragmas which returns value(s)
|
|
|
|
/// (e.g. `integrity_check`).
|
|
|
|
///
|
|
|
|
/// Prefer [PRAGMA function](https://sqlite.org/pragma.html#pragfunc) introduced in SQLite 3.20:
|
2022-11-27 16:38:06 +08:00
|
|
|
/// `SELECT * FROM pragma_table_info(?1);`
|
2021-08-01 23:39:47 +08:00
|
|
|
pub fn pragma<F, V>(
|
2019-02-03 16:17:37 +08:00
|
|
|
&self,
|
|
|
|
schema_name: Option<DatabaseName<'_>>,
|
|
|
|
pragma_name: &str,
|
2021-08-01 23:39:47 +08:00
|
|
|
pragma_value: V,
|
2019-02-03 16:17:37 +08:00
|
|
|
mut f: F,
|
|
|
|
) -> Result<()>
|
|
|
|
where
|
2019-03-10 18:12:14 +08:00
|
|
|
F: FnMut(&Row<'_>) -> Result<()>,
|
2021-08-01 23:39:47 +08:00
|
|
|
V: ToSql,
|
2019-02-03 16:17:37 +08:00
|
|
|
{
|
|
|
|
let mut sql = Sql::new();
|
|
|
|
sql.push_pragma(schema_name, pragma_name)?;
|
2019-02-22 01:55:51 +08:00
|
|
|
// The argument may be either in parentheses
|
2019-02-03 16:17:37 +08:00
|
|
|
// or it may be separated from the pragma name by an equal sign.
|
|
|
|
// The two syntaxes yield identical results.
|
|
|
|
sql.open_brace();
|
2021-08-01 23:39:47 +08:00
|
|
|
sql.push_value(&pragma_value)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
sql.close_brace();
|
|
|
|
let mut stmt = self.prepare(&sql)?;
|
2020-11-03 17:32:46 +08:00
|
|
|
let mut rows = stmt.query([])?;
|
2019-03-10 18:12:14 +08:00
|
|
|
while let Some(result_row) = rows.next()? {
|
|
|
|
let row = result_row;
|
2021-06-17 01:22:31 +08:00
|
|
|
f(row)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a new value to `pragma_name`.
|
|
|
|
///
|
|
|
|
/// Some pragmas will return the updated value which cannot be retrieved
|
|
|
|
/// with this method.
|
2021-08-01 23:39:47 +08:00
|
|
|
pub fn pragma_update<V>(
|
2019-02-03 16:17:37 +08:00
|
|
|
&self,
|
|
|
|
schema_name: Option<DatabaseName<'_>>,
|
|
|
|
pragma_name: &str,
|
2021-08-01 23:39:47 +08:00
|
|
|
pragma_value: V,
|
|
|
|
) -> Result<()>
|
|
|
|
where
|
|
|
|
V: ToSql,
|
|
|
|
{
|
2019-02-03 16:17:37 +08:00
|
|
|
let mut sql = Sql::new();
|
|
|
|
sql.push_pragma(schema_name, pragma_name)?;
|
2019-02-22 01:55:51 +08:00
|
|
|
// The argument may be either in parentheses
|
2019-02-03 16:17:37 +08:00
|
|
|
// or it may be separated from the pragma name by an equal sign.
|
|
|
|
// The two syntaxes yield identical results.
|
|
|
|
sql.push_equal_sign();
|
2021-08-01 23:39:47 +08:00
|
|
|
sql.push_value(&pragma_value)?;
|
2020-06-27 01:35:14 +08:00
|
|
|
self.execute_batch(&sql)
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a new value to `pragma_name` and return the updated value.
|
|
|
|
///
|
|
|
|
/// Only few pragmas automatically return the updated value.
|
2021-08-01 23:39:47 +08:00
|
|
|
pub fn pragma_update_and_check<F, T, V>(
|
2019-02-03 16:17:37 +08:00
|
|
|
&self,
|
|
|
|
schema_name: Option<DatabaseName<'_>>,
|
|
|
|
pragma_name: &str,
|
2021-08-01 23:39:47 +08:00
|
|
|
pragma_value: V,
|
2019-02-03 16:17:37 +08:00
|
|
|
f: F,
|
|
|
|
) -> Result<T>
|
|
|
|
where
|
2019-03-10 18:12:14 +08:00
|
|
|
F: FnOnce(&Row<'_>) -> Result<T>,
|
2021-08-01 23:39:47 +08:00
|
|
|
V: ToSql,
|
2019-02-03 16:17:37 +08:00
|
|
|
{
|
|
|
|
let mut sql = Sql::new();
|
|
|
|
sql.push_pragma(schema_name, pragma_name)?;
|
2019-02-22 01:55:51 +08:00
|
|
|
// The argument may be either in parentheses
|
2019-02-03 16:17:37 +08:00
|
|
|
// or it may be separated from the pragma name by an equal sign.
|
|
|
|
// The two syntaxes yield identical results.
|
|
|
|
sql.push_equal_sign();
|
2021-08-01 23:39:47 +08:00
|
|
|
sql.push_value(&pragma_value)?;
|
2020-11-03 17:32:46 +08:00
|
|
|
self.query_row(&sql, [], f)
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_identifier(s: &str) -> bool {
|
|
|
|
let chars = s.char_indices();
|
|
|
|
for (i, ch) in chars {
|
|
|
|
if i == 0 {
|
|
|
|
if !is_identifier_start(ch) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if !is_identifier_continue(ch) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_identifier_start(c: char) -> bool {
|
2023-01-08 00:09:53 +08:00
|
|
|
c.is_ascii_uppercase() || c == '_' || c.is_ascii_lowercase() || c > '\x7F'
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_identifier_continue(c: char) -> bool {
|
|
|
|
c == '$'
|
2023-01-08 00:09:53 +08:00
|
|
|
|| c.is_ascii_digit()
|
|
|
|
|| c.is_ascii_uppercase()
|
2019-02-03 16:17:37 +08:00
|
|
|
|| c == '_'
|
2023-01-08 00:09:53 +08:00
|
|
|
|| c.is_ascii_lowercase()
|
2019-02-03 16:17:37 +08:00
|
|
|
|| c > '\x7F'
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::Sql;
|
|
|
|
use crate::pragma;
|
2020-11-06 05:14:00 +08:00
|
|
|
use crate::{Connection, DatabaseName, Result};
|
2019-02-03 16:17:37 +08:00
|
|
|
|
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_query_value() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
|
|
|
let user_version: i32 = db.pragma_query_value(None, "user_version", |row| row.get(0))?;
|
2019-02-03 16:17:37 +08:00
|
|
|
assert_eq!(0, user_version);
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
2019-02-15 03:24:16 +08:00
|
|
|
#[test]
|
2020-01-15 00:11:36 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_func_query_value() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2022-11-11 23:20:39 +08:00
|
|
|
let user_version: i32 = db.one_column("SELECT user_version FROM pragma_user_version")?;
|
2019-02-15 03:24:16 +08:00
|
|
|
assert_eq!(0, user_version);
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-15 03:24:16 +08:00
|
|
|
}
|
|
|
|
|
2019-02-03 16:17:37 +08:00
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_query_no_schema() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2019-02-03 16:17:37 +08:00
|
|
|
let mut user_version = -1;
|
|
|
|
db.pragma_query(None, "user_version", |row| {
|
2019-02-22 04:14:55 +08:00
|
|
|
user_version = row.get(0)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
Ok(())
|
2020-11-06 05:14:00 +08:00
|
|
|
})?;
|
2019-02-03 16:17:37 +08:00
|
|
|
assert_eq!(0, user_version);
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_query_with_schema() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2019-02-03 16:17:37 +08:00
|
|
|
let mut user_version = -1;
|
|
|
|
db.pragma_query(Some(DatabaseName::Main), "user_version", |row| {
|
2019-02-22 04:14:55 +08:00
|
|
|
user_version = row.get(0)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
Ok(())
|
2020-11-06 05:14:00 +08:00
|
|
|
})?;
|
2019-02-03 16:17:37 +08:00
|
|
|
assert_eq!(0, user_version);
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2019-02-03 16:17:37 +08:00
|
|
|
let mut columns = Vec::new();
|
2022-10-02 17:34:58 +08:00
|
|
|
db.pragma(None, "table_info", "sqlite_master", |row| {
|
2019-02-22 04:14:55 +08:00
|
|
|
let column: String = row.get(1)?;
|
2019-02-03 16:17:37 +08:00
|
|
|
columns.push(column);
|
|
|
|
Ok(())
|
2020-11-06 05:14:00 +08:00
|
|
|
})?;
|
2019-02-03 16:17:37 +08:00
|
|
|
assert_eq!(5, columns.len());
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
2019-02-15 03:24:16 +08:00
|
|
|
#[test]
|
2020-01-15 00:11:36 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_func() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2022-11-27 16:38:06 +08:00
|
|
|
let mut table_info = db.prepare("SELECT * FROM pragma_table_info(?1)")?;
|
2019-02-15 03:24:16 +08:00
|
|
|
let mut columns = Vec::new();
|
2021-01-20 04:16:08 +08:00
|
|
|
let mut rows = table_info.query(["sqlite_master"])?;
|
2019-02-15 03:24:16 +08:00
|
|
|
|
2020-11-06 05:14:00 +08:00
|
|
|
while let Some(row) = rows.next()? {
|
|
|
|
let column: String = row.get(1)?;
|
2019-02-15 03:24:16 +08:00
|
|
|
columns.push(column);
|
|
|
|
}
|
|
|
|
assert_eq!(5, columns.len());
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-15 03:24:16 +08:00
|
|
|
}
|
|
|
|
|
2019-02-03 16:17:37 +08:00
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_update() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2021-08-01 23:39:47 +08:00
|
|
|
db.pragma_update(None, "user_version", 1)
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn pragma_update_and_check() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
|
|
|
let journal_mode: String =
|
2021-08-01 23:39:47 +08:00
|
|
|
db.pragma_update_and_check(None, "journal_mode", "OFF", |row| row.get(0))?;
|
2022-04-04 01:48:56 +08:00
|
|
|
assert!(
|
|
|
|
journal_mode == "off" || journal_mode == "memory",
|
2022-12-10 03:16:38 +08:00
|
|
|
"mode: {journal_mode:?}"
|
2021-08-01 23:39:47 +08:00
|
|
|
);
|
2022-04-04 01:48:56 +08:00
|
|
|
// Sanity checks to ensure the move to a generic `ToSql` wasn't breaking
|
2022-10-02 17:34:58 +08:00
|
|
|
let mode =
|
|
|
|
db.pragma_update_and_check(None, "journal_mode", "OFF", |row| row.get::<_, String>(0))?;
|
2022-12-10 03:16:38 +08:00
|
|
|
assert!(mode == "off" || mode == "memory", "mode: {mode:?}");
|
2022-04-04 01:48:56 +08:00
|
|
|
|
2021-08-01 23:39:47 +08:00
|
|
|
let param: &dyn crate::ToSql = &"OFF";
|
2022-04-04 01:48:56 +08:00
|
|
|
let mode =
|
|
|
|
db.pragma_update_and_check(None, "journal_mode", param, |row| row.get::<_, String>(0))?;
|
2022-12-10 03:16:38 +08:00
|
|
|
assert!(mode == "off" || mode == "memory", "mode: {mode:?}");
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn is_identifier() {
|
|
|
|
assert!(pragma::is_identifier("full"));
|
|
|
|
assert!(pragma::is_identifier("r2d2"));
|
|
|
|
assert!(!pragma::is_identifier("sp ce"));
|
|
|
|
assert!(!pragma::is_identifier("semi;colon"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn double_quote() {
|
|
|
|
let mut sql = Sql::new();
|
|
|
|
sql.push_schema_name(DatabaseName::Attached(r#"schema";--"#));
|
|
|
|
assert_eq!(r#""schema"";--""#, sql.as_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn wrap_and_escape() {
|
|
|
|
let mut sql = Sql::new();
|
|
|
|
sql.push_string_literal("value'; --");
|
|
|
|
assert_eq!("'value''; --'", sql.as_str());
|
|
|
|
}
|
2020-08-18 01:13:55 +08:00
|
|
|
|
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn locking_mode() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2022-10-02 17:34:58 +08:00
|
|
|
let r = db.pragma_update(None, "locking_mode", "exclusive");
|
2020-08-18 01:13:55 +08:00
|
|
|
if cfg!(feature = "extra_check") {
|
|
|
|
r.unwrap_err();
|
|
|
|
} else {
|
2020-11-06 05:14:00 +08:00
|
|
|
r?;
|
2020-08-18 01:13:55 +08:00
|
|
|
}
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2020-08-18 01:13:55 +08:00
|
|
|
}
|
2019-02-03 16:17:37 +08:00
|
|
|
}
|