xorm/internal/statements
Lunny Xiao b754e78269 Support big.Float (#1973)
Now you can use big.Float for numeric type.

```go
type MyMoney struct {
	Id int64
    Money big.Float `xorm:"numeric(22,2)"`
}
```

Reviewed-on: https://gitea.com/xorm/xorm/pulls/1973
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com>
2021-07-07 14:00:16 +08:00
..
cache.go Fix comments (#1896) 2021-04-12 16:00:07 +08:00
column_map.go Fix map with cols (#1575) 2020-03-06 08:55:12 +00:00
expr.go fix lint (#1953) 2021-06-15 20:28:49 +08:00
insert.go Fix #929 (#1936) 2021-07-03 20:26:49 +08:00
pk.go Fix bug when ID used but no reference table given (#1709) 2020-06-13 01:20:25 +00:00
query.go fix lint (#1953) 2021-06-15 20:28:49 +08:00
statement.go Fix #929 (#1936) 2021-07-03 20:26:49 +08:00
statement_args.go Fix comments (#1896) 2021-04-12 16:00:07 +08:00
statement_test.go fix lint (#1953) 2021-06-15 20:28:49 +08:00
update.go Improve get field value of bean (#1961) 2021-06-29 14:32:29 +08:00
values.go Support big.Float (#1973) 2021-07-07 14:00:16 +08:00