command.go 244 B

12345678910111213141516
  1. package sqlite
  2. type CommandType int
  3. const (
  4. UCTInsert CommandType = iota + 1
  5. UCTUpdate
  6. UCTDelete
  7. )
  8. type Command struct {
  9. CmdType CommandType
  10. Data map[string]any
  11. Conds map[string]any
  12. OverwriteExists bool
  13. }