Query with statement pool and parameters
(
&self,
query: &str,
params: &[Option<Vec<u8>>],
session_id: &Uuid,
)
| 2550 | |
| 2551 | /// Query with statement pool and parameters |
| 2552 | pub async fn query_with_statement_pool_params( |
| 2553 | &self, |
| 2554 | query: &str, |
| 2555 | params: &[Option<Vec<u8>>], |
| 2556 | session_id: &Uuid, |
| 2557 | ) -> Result<DbResponse, PgSqliteError> { |
| 2558 | // Forward to execute_with_params |
| 2559 | self.execute_with_params(query, params, session_id).await |
| 2560 | } |
| 2561 | |
| 2562 | /// Execute with statement pool and parameters |
| 2563 | pub async fn execute_with_statement_pool_params( |
no test coverage detected