Skip to main content

Crate uts_sql

Crate uts_sql 

Source
Expand description

This crate provides utilities for working with SQL databases.

Macros§

define_text_enum
A helper macro to define a text-based enum that can be stored in a SQLite database. The enum must implement Into<&'static str> and FromStr.
migrator
A helper macro to define a migrate function that runs database migrations from a specified directory.

Structs§

TextWrapper
Wrapper type for implementing sqlx Encode and Decode for types by converting them to and from text.