Expand description
traits underlying the implementation of SQL functionalities. What some other crates call prelude
Enums§
Traits§
- AsStatement
- Connection
- Generic trait to be implemented by SQL drivers (or proxy to SQL drivers). This trait is used to provide the basis of the functionalities on which the crate rely
- Create
Table - Delete
- Delete
Flavored Statement - Delete
Statement - Execute
Trait - Generic trait to be implemented by SQL drivers (or more likely by proxy to SQL drivers) so that the functionalities provided by this crate can be leveraged
- Filter
- Trait to be implemented for filtering. Returns the contents of a
WHERE
clause. - Flavored
Filter - Trait to be implemented for filtering. Returns the contents of a
WHERE
clause. - Flavored
Order - Order trait to specify ordering clause
- Insert
- Insert
Flavored Statement - Insert
Multiple - Insert
Statement - IsSelect
- Order
- Order trait to specify ordering clause
- Params
- Query
Trait - Generic trait to be implemented by SQL drivers (or more likely by proxy to SQL drivers) so that the functionalities provided by this crate can be leveraged
- Row
- Return a row of results that can be queried to be converted into objects
- Select
- Select
Flavored Statement - Select
Statement - Select
V2 - Table
- Trait to manage table - create, check if exists, and drop
- Table
Flavored Statement - Specify table handling statement using the SQL Flavor
- Table
Statement - [Deprecated] Specify table handling SQL statement
- ToParam
- TryFrom
RefRow - Trait to be implemented to allow a
Row
to be converted into an object - Update
- Update
Flavored Statement - Update
Statement