目前只支持mysql,预期sqlx支持的数据库都会支持。
安装
shell
cargo install --path .
执行生成命令
shell
db-to-code d2c_config.toml
配置说明 d2c_config.toml
```toml
dburl="mysql://user:xxx@0.0.0.0/dbname"
tables="^y_"
tpl_body="""
pub struct {table.modelname} \{ {{ for field in fielddata }} {{ if field.comment }}/// {field.comment|rmln} {{ if field.default}} default: {field.default} {{ endif }}{{ endif }} #[sqlx(default)] #[sqlx(rename="{field.fieldname}")] pub {field.columnname}: {field.type_name}, {{ endfor }}} """
columnnamerule="mixed"
columnnamestart_replace=""
columnnameend_replace=""
modelnamerule="camel"
modelnamestart_replace=""
modelnameend_replace=""
outfile_split=true
outfilenamerule="camel"
outfilenamestart_replace=""
outfilenameend_replace=""
outfile_overwrite=true
default_null="None"
default_none="None"
type_transform=true
type_default="String"
[type_map.1]#.1 为优先级.越大越优先
"i32"=["int\(\d+\)"] [typemap.2] "i8"=["tinyint\(\d+\)","ENUM"] [typemap.3] "i16"=["smallint\(\d+\)"] [typemap.4] "i64"=["bigint\(\d+\)"] [typemap.5] "u8"=["tinyint\(\d+\)\s+unsigned"] [typemap.6] "u16"=["smallint\(\d+\)\s+unsigned"] [typemap.7] "u32"=["int\(\d+\)\s+unsigned"] [typemap.8] "u64"=["bigint\(\d+\)\s+unsigned"] [typemap.9] "f32"=["float"] [typemap.10] "f64"=["decimal"] [typemap.11] "f64"=["decimal","double"]
[default_map.1]#.1 为优先级.越大越优先
"^\((-)?\d+\.\d+\)$"="$1" [defaultmap.2] "^\((-)?\d+\)$"="$1" [defaultmap.3] "^\(.\)$"="\"$1\"" [default_map.4] "^\s$"="\"\"" ```