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
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. - Insert
- 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
Statement - Select
V2 - Table
- Trait to manage table - create, check if exists, and drop
- Table
Statement - ToParam
- TryFrom
RefRow - Trait to be implemented to allow a
Row
to be converted into an object - Update
- Update
Statement