Revert "Support Rust expression like {x.y} in SQL strings"

This reverts commit b86d9321b5.
This commit is contained in:
gwenn
2023-08-21 19:40:37 +02:00
parent b86d9321b5
commit bbb570aabd
4 changed files with 7 additions and 34 deletions

View File

@@ -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]