mysql.go 263 B

1234567891011121314151617181920
  1. package smysql
  2. import (
  3. . "createindex/base"
  4. )
  5. type (
  6. SMysql struct {
  7. Fields []string //同步字段,这空默认全部
  8. Sql string //限定sql
  9. Addr string
  10. User string
  11. Pwd string
  12. Size int
  13. }
  14. )
  15. func (s *SMysql) Find(d *Direct) {
  16. }