When does sqlx::query crate a Statement #3802
Replies: 2 comments 1 reply
-
It is up to the database driver. All the existing implementations prepare and cache the statement when it is first executed on a given connection, unless |
Beta Was this translation helpful? Give feedback.
-
Thanks for the answer, I see the drivers have a get_or_prepare_statement method that given a string sql returns a statement metadata object. But wouldn't it be much better to make this caching system transparent to the driver and just use the Executor::prepare method. The caching system could be central and the driver would just need to know how to create a prepared statement but it must already do so. |
Beta Was this translation helpful? Give feedback.
-
Hello, I am implementing a new driver for duckdb. I have the basic functionality so far. I wanted to ask you, in which circumstances sqlx creates a prepared Statement. For example
sqlx::query
, https://docs.rs/sqlx/latest/sqlx/fn.query.html The documentation says: "Execute a single SQL query as a prepared statement (transparently cached)." but it seems from the implementation that it always creates a string sql, never a statement.sqlx/sqlx-core/src/query.rs
Line 655 in e474be6
In which circumstance does it actually prepare the statement (without explicitly calling .prepare ? The documentations says "transparently cached".
Beta Was this translation helpful? Give feedback.
All reactions