Versions in this module Expand all Collapse all v1 v1.0.0 Dec 14, 2023 Changes in this version + var ReservedWords = hashset.New(...) + var ReservedWordsList = []string + func BuildQuerySQL(db *gorm.DB) + func BuildReservedWord(v string) string + func ConvertMysqlSql(sql string) string + func ConvertNameToFormat(x string) string + func Create(db *gorm.DB) + func Delete(config *callbacks.Config) func(db *gorm.DB) + func ExplainSQL(sql string, numericPlaceholder *regexp.Regexp, escaper string, ...) string + func IsReservedWord(v string) bool + func New(config Config) gorm.Dialector + func Open(dsn string) gorm.Dialector + func Query(db *gorm.DB) + func RefClone(inter interface{}) interface + func RefInclude(inter interface{}, inc []string) interface + func RemoveReservedWordSymbol(v string) string + func ReplacementQuote(value string) + func RowQuery(db *gorm.DB) + func TB(db *gorm.DB) + func Update(config *callbacks.Config) func(db *gorm.DB) + type BuildIndexOptionsInterface interface + BuildIndexOptions func([]schema.IndexOption, *gorm.Statement) []interface{} + type ColumnType struct + func (c ColumnType) AutoIncrement() (isAutoIncrement bool, ok bool) + func (c ColumnType) ColumnType() (columnType string, ok bool) + func (c ColumnType) Comment() (value string, ok bool) + func (c ColumnType) DatabaseTypeName() string + func (c ColumnType) DecimalSize() (precision int64, scale int64, ok bool) + func (c ColumnType) DefaultValue() (value string, ok bool) + func (c ColumnType) Length() (length int64, ok bool) + func (c ColumnType) Name() string + func (c ColumnType) Nullable() (nullable bool, ok bool) + func (c ColumnType) PrimaryKey() (isPrimaryKey bool, ok bool) + func (c ColumnType) ScanType() reflect.Type + func (c ColumnType) Unique() (unique bool, ok bool) + type Config struct + Conn *sql.DB + DSN string + DefaultStringSize uint + DriverName string + type Dialector struct + func (d Dialector) BindVarTo(writer clause.Writer, stmt *gorm.Statement, v interface{}) + func (d Dialector) ClauseBuilders() map[string]clause.ClauseBuilder + func (d Dialector) DataTypeOf(field *schema.Field) string + func (d Dialector) DefaultValueOf(*schema.Field) clause.Expression + func (d Dialector) DummyTableName() string + func (d Dialector) Explain(sql string, vars ...interface{}) string + func (d Dialector) Initialize(db *gorm.DB) (err error) + func (d Dialector) Migrator(db *gorm.DB) gorm.Migrator + func (d Dialector) Name() string + func (d Dialector) QuoteTo(writer clause.Writer, str string) + func (d Dialector) RewriteLimit(c clause.Clause, builder clause.Builder) + func (d Dialector) RewriteWhere(c clause.Clause, builder clause.Builder) + func (d Dialector) RollbackTo(tx *gorm.DB, name string) error + func (d Dialector) SavePoint(tx *gorm.DB, name string) error + type Migrator struct + func (m Migrator) AddColumn(value interface{}, field string) error + func (m Migrator) AlterColumn(value interface{}, field string) error + func (m Migrator) AutoMigrate(values ...interface{}) error + func (m Migrator) ColumnTypes(value interface{}) ([]gorm.ColumnType, error) + func (m Migrator) CreateConstraint(value interface{}, name string) error + func (m Migrator) CreateIndex(value interface{}, name string) error + func (m Migrator) CreateTable(values ...interface{}) error + func (m Migrator) CurrentDatabase() (name string) + func (m Migrator) DropColumn(value interface{}, name string) error + func (m Migrator) DropConstraint(value interface{}, name string) error + func (m Migrator) DropIndex(value interface{}, name string) error + func (m Migrator) DropTable(values ...interface{}) error + func (m Migrator) HasColumn(value interface{}, field string) bool + func (m Migrator) HasConstraint(value interface{}, name string) bool + func (m Migrator) HasIndex(value interface{}, name string) bool + func (m Migrator) HasTable(value interface{}) bool + func (m Migrator) RenameIndex(value interface{}, oldName, newName string) error + func (m Migrator) RenameTable(oldName, newName interface{}) (err error) + func (m Migrator) TryQuotifyReservedWords(values ...interface{}) error + func (m Migrator) TryRemoveOnUpdate(values ...interface{}) error + type Namer struct + func (n Namer) CheckerName(table, column string) (name string) + func (n Namer) ColumnName(table, column string) (name string) + func (n Namer) IndexName(table, column string) (name string) + func (n Namer) JoinTableName(table string) (name string) + func (n Namer) RelationshipFKName(relationship schema.Relationship) (name string) + func (n Namer) TableName(table string) (name string) + type STable struct + Conn *gorm.DB + Table interface{} + func Table(table ...interface{}) *STable + func (stb *STable) AutoMigrate(dst ...interface{}) error + func (stb *STable) ClausesAssignmentColumns(name string, doUpdates []string) error + func (stb *STable) Create() error + func (stb *STable) DB() (*sql.DB, error) + func (stb *STable) Delete() error + func (stb *STable) DropTable(dest ...interface{}) error + func (stb *STable) Get(dest interface{}, conds ...interface{}) error + func (stb *STable) GetAll(dest interface{}) error + func (stb *STable) GetWhere(dest interface{}) error + func (stb *STable) HasTable(dest interface{}) bool + func (stb *STable) Model() *gorm.DB + func (stb *STable) Update(dest interface{}) error