pub const PLACEHOLDER: &str = "?";
pub const PLACEHOLDER: &str = "$";
/// A type alias for the database connection pool.
///
/// When the `turso` feature is not enabled, this is a `sqlx::Pool<sqlx::Any>`.
pub type Connection = Pool;
/// A type alias for the database connection.
///
/// When the `turso` feature is enabled, this is a `libsql::Connection`.
pub type Connection = Connection;