mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
10 lines
326 B
Go
10 lines
326 B
Go
package driver
|
|
|
|
type DbMetadata interface {
|
|
GetTables() []map[string]interface{}
|
|
GetColumns(tableNames ...string) []map[string]interface{}
|
|
GetPrimaryKey(tableName string) string
|
|
GetTableInfos() []map[string]interface{}
|
|
GetTableRecord(tableName string, pageNum, pageSize int) ([]string, []map[string]interface{}, error)
|
|
}
|