Module rorm_db::executor

source ·
Expand description

This module defines a wrapper for sqlx’s Executor

Unlike sqlx’s Executor which provides several separate methods for different querying strategies, our Executor has a single method which is generic using the QueryStrategy trait.

Structs

Enums

Traits

  • Some kind of database connection which can execute queries
  • Define how a query is send to and results retrieved from the database.