- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ColumnTypes (0.07 seconds)
-
scan.go
} } db.RowsAffected = 0 switch dest := db.Statement.Dest.(type) { case map[string]interface{}, *map[string]interface{}: if initialized || rows.Next() { columnTypes, _ := rows.ColumnTypes() prepareValues(values, db, columnTypes, columns) db.RowsAffected++ db.AddError(rows.Scan(values...)) mapValue, ok := dest.(map[string]interface{}) if !ok {Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sun May 25 07:40:40 GMT 2025 - 10.4K bytes - Click Count (0) -
migrator/migrator.go
} if !unique && field.Unique { return m.DB.Migrator().CreateConstraint(value, constraint) } return nil }) } // ColumnTypes return columnTypes []gorm.ColumnType and execErr error func (m Migrator) ColumnTypes(value interface{}) ([]gorm.ColumnType, error) { columnTypes := make([]gorm.ColumnType, 0) execErr := m.RunWithValue(value, func(stmt *gorm.Statement) (err error) {Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sun Oct 26 12:31:09 GMT 2025 - 29.7K bytes - Click Count (0) -
api/go1.8.txt
pkg database/sql, method (*DB) QueryContext(context.Context, string, ...interface{}) (*Rows, error) pkg database/sql, method (*DB) QueryRowContext(context.Context, string, ...interface{}) *Row pkg database/sql, method (*Rows) ColumnTypes() ([]*ColumnType, error) pkg database/sql, method (*Rows) NextResultSet() bool pkg database/sql, method (*Stmt) ExecContext(context.Context, ...interface{}) (Result, error)
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Dec 21 05:25:57 GMT 2016 - 16.3K bytes - Click Count (0)