Versions in this module Expand all Collapse all v0 v0.1.1 Jan 17, 2025 v0.1.0 Jan 16, 2025 Changes in this version + const DriverName + func Open(dsn string) gorm.Dialector + type Column struct + func (c Column) DatabaseTypeName() string + func (c Column) DecimalSize() (precision int64, scale int64, ok bool) + func (c Column) Length() (length int64, ok bool) + func (c Column) Name() string + func (c Column) Nullable() (nullable bool, ok bool) + type Dialect struct + Conn gorm.ConnPool + DSN string + DriverName string + func (dialect Dialect) BindVarTo(writer clause.Writer, stmt *gorm.Statement, v interface{}) + func (dialect Dialect) ClauseBuilders() map[string]clause.ClauseBuilder + func (dialect Dialect) DataTypeOf(field *schema.Field) string + func (dialect Dialect) DefaultValueOf(field *schema.Field) clause.Expression + func (dialect Dialect) Explain(sql string, vars ...interface{}) string + func (dialect Dialect) Initialize(db *gorm.DB) (err error) + func (dialect Dialect) Migrator(db *gorm.DB) gorm.Migrator + func (dialect Dialect) Name() string + func (dialect Dialect) QuoteTo(writer clause.Writer, str string) + func (dialect Dialect) RollbackTo(tx *gorm.DB, name string) error + func (dialect Dialect) SavePoint(tx *gorm.DB, name string) error + func (dialector *Dialect) Create(db *gorm.DB) + type Migrator struct + func (m Migrator) AlterColumn(value interface{}, field string) error + func (m Migrator) AutoMigrate(values ...interface{}) error + func (m Migrator) DropConstraint(value interface{}, name string) error + func (m Migrator) FullDataTypeOf(field *schema.Field) (expr clause.Expr) + func (m Migrator) RenameColumn(value interface{}, oldName, newName string) error + func (m Migrator) RenameIndex(value interface{}, oldName, newName string) error