Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DoUpdate ¶
func DoUpdate(db basic.SQLCommon, tableName string, data [][]interface{}, options UpdateMultiOptions) (err error)
插入多条增量更新的数据
func DoUpdateOne ¶
func DoUpdateOne(db basic.SQLCommon, tableName string, data []interface{}, options UpdateOptions) (err error)
插入单条数据
Types ¶
type FetchOptions ¶
type FetchOptions struct { IgnoreFields []string // 忽略的列名称 PageNumber int // 分页获取增量的页码,从1开始 PageSize int // 分页获取增量的页大小 UpdateTimeFieldName string // 更新时间所在列的列名称 LastUpdateTime int64 // 从哪个时间戳开始查询,这是大于的关系 WhereSqlStmt string // 自定义SQL查询语句的Where子句 WhereSqlArgs []interface{} // 自定义SQL查询语句的Where子句的参数列表 }
获取增量数据时的配置信息
type FetchResult ¶
type FetchResult struct { Columns []string `json:"columns"` // 列名称 ColumnTypes []string `json:"column_types"` // 列的数据类型 Data [][]interface{} `json:"data"` // 待同步的数据,每一行是一条数据,与列名称一一对应 }
获取增量数据的返回结果
func DoFetch ¶
func DoFetch(db basic.SQLCommon, tableName string, options FetchOptions) (rsp FetchResult, err error)
获取增量更新的数据
type UpdateMultiOptions ¶
type UpdateMultiOptions struct { UpdateOptions BatchCount int // 一次批量插入的条数,用于加快执行速度 }
插入多条数据时的配置信息
Click to show internal directories.
Click to hide internal directories.