Skip to main content

Module sql

Module sql 

Source
Expand description

SQL DDL generation for the supported dialects.

Each dialect implements the Dialect trait, which knows how to render DataType values, identifier quoting, and dialect-specific clauses. The top-level entry point is LogicalModel::to_sql.

Structs§

MySql
MySQL / MariaDB renderer.
Postgres
PostgreSQL renderer.
Sqlite
SQLite 3 renderer.

Enums§

SqlDialect
One of the dialects RemodelCore knows how to render.

Traits§

Dialect
Dialect-specific rendering hooks.