field.go 215 B

123456789101112131415
  1. package mysql
  2. type Field struct {
  3. Catalog string
  4. Db string
  5. Table string
  6. OrgTable string
  7. Name string
  8. OrgName string
  9. DispLen uint32
  10. // Charset uint16
  11. Flags uint16
  12. Type byte
  13. Scale byte
  14. }