MCPcopy Create free account
hub / github.com/erans/pgsqlite / query_with_statement_pool_params

Method query_with_statement_pool_params

src/session/db_handler.rs:2552–2560  ·  view source on GitHub ↗

Query with statement pool and parameters

(
        &self,
        query: &str,
        params: &[Option<Vec<u8>>],
        session_id: &Uuid,
    )

Source from the content-addressed store, hash-verified

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(

Callers 1

Calls 1

execute_with_paramsMethod · 0.45

Tested by

no test coverage detected