(table string)
| 228 | } |
| 229 | |
| 230 | func (b *sqlBuilder) Update(table string) db.Updater { |
| 231 | qu := &updater{ |
| 232 | builder: b, |
| 233 | } |
| 234 | return qu.setTable(table) |
| 235 | } |
| 236 | |
| 237 | // Map receives a pointer to map or struct and maps it to columns and values. |
| 238 | func Map(item interface{}, options *MapOptions) ([]string, []interface{}, error) { |