Last active
June 11, 2023 12:56
-
-
Save PumpkinSeed/b4993c6ad20ea90e3da8c991a90a91e1 to your computer and use it in GitHub Desktop.
Extension for sql package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func structScan(rows *sql.Rows, model interface{}) error { | |
v := reflect.ValueOf(model) | |
if v.Kind() != reflect.Ptr { | |
return errors.New("must pass a pointer, not a value, to StructScan destination") // @todo add new error message | |
} | |
v = reflect.Indirect(v) | |
t := v.Type() | |
cols, _ := rows.Columns() | |
var m map[string]interface{} | |
for rows.Next() { | |
columns := make([]interface{}, len(cols)) | |
columnPointers := make([]interface{}, len(cols)) | |
for i := range columns { | |
columnPointers[i] = &columns[i] | |
} | |
if err := rows.Scan(columnPointers...); err != nil { | |
return err | |
} | |
m = make(map[string]interface{}) | |
for i, colName := range cols { | |
val := columnPointers[i].(*interface{}) | |
m[colName] = *val | |
} | |
} | |
for i := 0; i < v.NumField(); i++ { | |
field := strings.Split(t.Field(i).Tag.Get("json"), ",")[0] | |
if item, ok := m[field]; ok { | |
if v.Field(i).CanSet() { | |
if item != nil { | |
switch v.Field(i).Kind() { | |
case reflect.String: | |
v.Field(i).SetString(b2s(item.([]uint8))) | |
case reflect.Float32, reflect.Float64: | |
v.Field(i).SetFloat(item.(float64)) | |
case reflect.Ptr: | |
if reflect.ValueOf(item).Kind() == reflect.Bool { | |
itemBool := item.(bool) | |
v.Field(i).Set(reflect.ValueOf(&itemBool)) | |
} | |
case reflect.Struct: | |
v.Field(i).Set(reflect.ValueOf(item)) | |
default: | |
fmt.Println(t.Field(i).Name, ": ", v.Field(i).Kind(), " - > - ", reflect.ValueOf(item).Kind()) // @todo remove after test out the Get methods | |
} | |
} | |
} | |
} | |
} | |
return nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is a more up to date version of the above code:
https://gist.github.com/Indribell/91c7504460732e4958bec2a80ab7b3f6
Bug fixes, performance fixes, it can now handle Struct or Slice/Struct, ... Not perfect ( can be made faster with struct information caching instead of reflecting ) but that is all the time we have today.