mirror of
https://github.com/isar/rusqlite.git
synced 2025-09-15 12:12:18 +08:00
Revert "Support Rust expression like {x.y}
in SQL strings"
This reverts commit b86d9321b5
.
This commit is contained in:
@@ -220,9 +220,9 @@ macro_rules! named_params {
|
||||
|
||||
/// Captured identifiers in SQL
|
||||
///
|
||||
/// * SQLite `$x` / `@x` / `:x` syntax works (Rust `&x` syntax does not work).
|
||||
/// * only SQLite `$x` / `@x` / `:x` syntax works (Rust `&x` syntax does not
|
||||
/// work).
|
||||
/// * `$x.y` expression does not work.
|
||||
/// * `{x}` and `{x.y}` work
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
@@ -249,9 +249,9 @@ macro_rules! prepare_and_bind {
|
||||
|
||||
/// Captured identifiers in SQL
|
||||
///
|
||||
/// * SQLite `$x` / `@x` / `:x` syntax works (Rust `&x` syntax does not work).
|
||||
/// * only SQLite `$x` / `@x` / `:x` syntax works (Rust `&x` syntax does not
|
||||
/// work).
|
||||
/// * `$x.y` expression does not work.
|
||||
/// * `{x}` and `{x.y}` work
|
||||
#[cfg(feature = "rusqlite-macros")]
|
||||
#[cfg_attr(docsrs, doc(cfg(feature = "rusqlite-macros")))]
|
||||
#[macro_export]
|
||||
|
Reference in New Issue
Block a user