mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-05-11 22:19:39 +08:00
错误消息中文化: - 19 个驱动实现文件中 connection not open / table name required 等英文消息替换为中文 - methods_file.go / methods_db.go / methods_driver.go 英文消息中文化 - 前端 App/Sidebar/DataGrid/ConnectionModal/DriverManagerModal 同步替换 "Cancelled" → "已取消" 文档与测试: - database.go Database/BatchApplier 接口、types.go 12 个类型、driver_support.go 导出函数补充中文 godoc - 新增 logger_test.go(ErrorChain 5 个用例)和 methods_db_conn_test.go(连接管理 7 个用例) Bug 修复: - DataGrid: 将 liveTargets 空检查移至非虚拟路径,修复外部横向滚动条拖动时内容不跟随 - vite.config.ts: server.host 指定 127.0.0.1,修复 IPv6 回环被拦截导致 Wails 代理 502 基础设施: - .gitignore 新增 .gemini/ 规则,tmpclaude-* 改为 **/tmpclaude-* 覆盖子目录
644 lines
17 KiB
Go
644 lines
17 KiB
Go
//go:build gonavi_full_drivers || gonavi_vastbase_driver
|
||
|
||
package db
|
||
|
||
import (
|
||
"context"
|
||
"database/sql"
|
||
"fmt"
|
||
"net"
|
||
"net/url"
|
||
"strconv"
|
||
"strings"
|
||
"time"
|
||
|
||
"GoNavi-Wails/internal/connection"
|
||
"GoNavi-Wails/internal/logger"
|
||
"GoNavi-Wails/internal/ssh"
|
||
"GoNavi-Wails/internal/utils"
|
||
|
||
_ "github.com/lib/pq" // Vastbase is PostgreSQL compatible
|
||
)
|
||
|
||
// VastbaseDB implements Database interface for Vastbase (海量) database
|
||
// Vastbase is a PostgreSQL-compatible database, so we reuse PostgreSQL driver
|
||
type VastbaseDB struct {
|
||
conn *sql.DB
|
||
pingTimeout time.Duration
|
||
forwarder *ssh.LocalForwarder
|
||
}
|
||
|
||
func (v *VastbaseDB) getDSN(config connection.ConnectionConfig) string {
|
||
dbname := config.Database
|
||
if dbname == "" {
|
||
dbname = "vastbase" // Vastbase default database
|
||
}
|
||
|
||
u := &url.URL{
|
||
Scheme: "postgres",
|
||
Host: net.JoinHostPort(config.Host, strconv.Itoa(config.Port)),
|
||
Path: "/" + dbname,
|
||
}
|
||
u.User = url.UserPassword(config.User, config.Password)
|
||
q := url.Values{}
|
||
q.Set("sslmode", resolvePostgresSSLMode(config))
|
||
q.Set("connect_timeout", strconv.Itoa(getConnectTimeoutSeconds(config)))
|
||
u.RawQuery = q.Encode()
|
||
|
||
return u.String()
|
||
}
|
||
|
||
func (v *VastbaseDB) Connect(config connection.ConnectionConfig) error {
|
||
runConfig := config
|
||
|
||
if config.UseSSH {
|
||
logger.Infof("Vastbase 使用 SSH 连接:地址=%s:%d 用户=%s", config.Host, config.Port, config.User)
|
||
|
||
forwarder, err := ssh.GetOrCreateLocalForwarder(config.SSH, config.Host, config.Port)
|
||
if err != nil {
|
||
return fmt.Errorf("创建 SSH 隧道失败:%w", err)
|
||
}
|
||
v.forwarder = forwarder
|
||
|
||
host, portStr, err := net.SplitHostPort(forwarder.LocalAddr)
|
||
if err != nil {
|
||
return fmt.Errorf("解析本地转发地址失败:%w", err)
|
||
}
|
||
|
||
port, err := strconv.Atoi(portStr)
|
||
if err != nil {
|
||
return fmt.Errorf("解析本地端口失败:%w", err)
|
||
}
|
||
|
||
localConfig := config
|
||
localConfig.Host = host
|
||
localConfig.Port = port
|
||
localConfig.UseSSH = false
|
||
|
||
runConfig = localConfig
|
||
logger.Infof("Vastbase 通过本地端口转发连接:%s -> %s:%d", forwarder.LocalAddr, config.Host, config.Port)
|
||
}
|
||
|
||
attempts := []connection.ConnectionConfig{runConfig}
|
||
if shouldTrySSLPreferredFallback(runConfig) {
|
||
attempts = append(attempts, withSSLDisabled(runConfig))
|
||
}
|
||
|
||
var failures []string
|
||
for idx, attempt := range attempts {
|
||
dsn := v.getDSN(attempt)
|
||
db, err := sql.Open("postgres", dsn)
|
||
if err != nil {
|
||
failures = append(failures, fmt.Sprintf("第%d次连接打开失败: %v", idx+1, err))
|
||
continue
|
||
}
|
||
v.conn = db
|
||
v.pingTimeout = getConnectTimeout(attempt)
|
||
if err := v.Ping(); err != nil {
|
||
_ = db.Close()
|
||
v.conn = nil
|
||
failures = append(failures, fmt.Sprintf("第%d次连接验证失败: %v", idx+1, err))
|
||
continue
|
||
}
|
||
if idx > 0 {
|
||
logger.Warnf("Vastbase SSL 优先连接失败,已回退至明文连接")
|
||
}
|
||
return nil
|
||
}
|
||
return fmt.Errorf("连接建立后验证失败:%s", strings.Join(failures, ";"))
|
||
}
|
||
|
||
func (v *VastbaseDB) Close() error {
|
||
if v.forwarder != nil {
|
||
if err := v.forwarder.Close(); err != nil {
|
||
logger.Warnf("关闭 Vastbase SSH 端口转发失败:%v", err)
|
||
}
|
||
v.forwarder = nil
|
||
}
|
||
|
||
if v.conn != nil {
|
||
return v.conn.Close()
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (v *VastbaseDB) Ping() error {
|
||
if v.conn == nil {
|
||
return fmt.Errorf("连接未打开")
|
||
}
|
||
timeout := v.pingTimeout
|
||
if timeout <= 0 {
|
||
timeout = 5 * time.Second
|
||
}
|
||
ctx, cancel := utils.ContextWithTimeout(timeout)
|
||
defer cancel()
|
||
return v.conn.PingContext(ctx)
|
||
}
|
||
|
||
func (v *VastbaseDB) QueryContext(ctx context.Context, query string) ([]map[string]interface{}, []string, error) {
|
||
if v.conn == nil {
|
||
return nil, nil, fmt.Errorf("连接未打开")
|
||
}
|
||
|
||
rows, err := v.conn.QueryContext(ctx, query)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
defer rows.Close()
|
||
|
||
return scanRows(rows)
|
||
}
|
||
|
||
func (v *VastbaseDB) Query(query string) ([]map[string]interface{}, []string, error) {
|
||
if v.conn == nil {
|
||
return nil, nil, fmt.Errorf("连接未打开")
|
||
}
|
||
|
||
rows, err := v.conn.Query(query)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
defer rows.Close()
|
||
return scanRows(rows)
|
||
}
|
||
|
||
func (v *VastbaseDB) ExecContext(ctx context.Context, query string) (int64, error) {
|
||
if v.conn == nil {
|
||
return 0, fmt.Errorf("连接未打开")
|
||
}
|
||
res, err := v.conn.ExecContext(ctx, query)
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
return res.RowsAffected()
|
||
}
|
||
|
||
func (v *VastbaseDB) Exec(query string) (int64, error) {
|
||
if v.conn == nil {
|
||
return 0, fmt.Errorf("连接未打开")
|
||
}
|
||
res, err := v.conn.Exec(query)
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
return res.RowsAffected()
|
||
}
|
||
|
||
func (v *VastbaseDB) GetDatabases() ([]string, error) {
|
||
data, _, err := v.Query("SELECT datname FROM pg_database WHERE datistemplate = false")
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
var dbs []string
|
||
for _, row := range data {
|
||
if val, ok := row["datname"]; ok {
|
||
dbs = append(dbs, fmt.Sprintf("%v", val))
|
||
}
|
||
}
|
||
return dbs, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetTables(dbName string) ([]string, error) {
|
||
query := "SELECT schemaname, tablename FROM pg_catalog.pg_tables WHERE schemaname != 'information_schema' AND schemaname NOT LIKE 'pg_%' ORDER BY schemaname, tablename"
|
||
data, _, err := v.Query(query)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
var tables []string
|
||
for _, row := range data {
|
||
schema, okSchema := row["schemaname"]
|
||
name, okName := row["tablename"]
|
||
if okSchema && okName {
|
||
tables = append(tables, fmt.Sprintf("%v.%v", schema, name))
|
||
continue
|
||
}
|
||
if okName {
|
||
tables = append(tables, fmt.Sprintf("%v", name))
|
||
}
|
||
}
|
||
return tables, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetCreateStatement(dbName, tableName string) (string, error) {
|
||
return fmt.Sprintf("-- SHOW CREATE TABLE not fully supported for Vastbase in this version.\n-- Table: %s", tableName), nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetColumns(dbName, tableName string) ([]connection.ColumnDefinition, error) {
|
||
schema := strings.TrimSpace(dbName)
|
||
if schema == "" {
|
||
schema = "public"
|
||
}
|
||
table := strings.TrimSpace(tableName)
|
||
if table == "" {
|
||
return nil, fmt.Errorf("表名不能为空")
|
||
}
|
||
|
||
esc := func(s string) string { return strings.ReplaceAll(s, "'", "''") }
|
||
|
||
query := fmt.Sprintf(`
|
||
SELECT
|
||
a.attname AS column_name,
|
||
pg_catalog.format_type(a.atttypid, a.atttypmod) AS data_type,
|
||
CASE WHEN a.attnotnull THEN 'NO' ELSE 'YES' END AS is_nullable,
|
||
pg_get_expr(ad.adbin, ad.adrelid) AS column_default,
|
||
col_description(a.attrelid, a.attnum) AS comment,
|
||
CASE WHEN pk.attname IS NOT NULL THEN 'PRI' ELSE '' END AS column_key
|
||
FROM pg_class c
|
||
JOIN pg_namespace n ON n.oid = c.relnamespace
|
||
JOIN pg_attribute a ON a.attrelid = c.oid
|
||
LEFT JOIN pg_attrdef ad ON ad.adrelid = c.oid AND ad.adnum = a.attnum
|
||
LEFT JOIN (
|
||
SELECT i.indrelid, a3.attname
|
||
FROM pg_index i
|
||
JOIN pg_attribute a3 ON a3.attrelid = i.indrelid AND a3.attnum = ANY(i.indkey)
|
||
WHERE i.indisprimary
|
||
) pk ON pk.indrelid = c.oid AND pk.attname = a.attname
|
||
WHERE c.relkind IN ('r', 'p')
|
||
AND n.nspname = '%s'
|
||
AND c.relname = '%s'
|
||
AND a.attnum > 0
|
||
AND NOT a.attisdropped
|
||
ORDER BY a.attnum`, esc(schema), esc(table))
|
||
|
||
data, _, err := v.Query(query)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
var columns []connection.ColumnDefinition
|
||
for _, row := range data {
|
||
col := connection.ColumnDefinition{
|
||
Name: fmt.Sprintf("%v", row["column_name"]),
|
||
Type: fmt.Sprintf("%v", row["data_type"]),
|
||
Nullable: fmt.Sprintf("%v", row["is_nullable"]),
|
||
Key: fmt.Sprintf("%v", row["column_key"]),
|
||
Extra: "",
|
||
Comment: "",
|
||
}
|
||
|
||
if val, ok := row["comment"]; ok && val != nil {
|
||
col.Comment = fmt.Sprintf("%v", val)
|
||
}
|
||
|
||
if val, ok := row["column_default"]; ok && val != nil {
|
||
def := fmt.Sprintf("%v", val)
|
||
col.Default = &def
|
||
if strings.HasPrefix(strings.ToLower(strings.TrimSpace(def)), "nextval(") {
|
||
col.Extra = "auto_increment"
|
||
}
|
||
}
|
||
|
||
columns = append(columns, col)
|
||
}
|
||
return columns, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetIndexes(dbName, tableName string) ([]connection.IndexDefinition, error) {
|
||
schema := strings.TrimSpace(dbName)
|
||
if schema == "" {
|
||
schema = "public"
|
||
}
|
||
table := strings.TrimSpace(tableName)
|
||
if table == "" {
|
||
return nil, fmt.Errorf("表名不能为空")
|
||
}
|
||
|
||
esc := func(s string) string { return strings.ReplaceAll(s, "'", "''") }
|
||
|
||
query := fmt.Sprintf(`
|
||
SELECT
|
||
i.relname AS index_name,
|
||
a.attname AS column_name,
|
||
ix.indisunique AS is_unique,
|
||
x.ordinality AS seq_in_index,
|
||
am.amname AS index_type
|
||
FROM pg_class t
|
||
JOIN pg_namespace n ON n.oid = t.relnamespace
|
||
JOIN pg_index ix ON t.oid = ix.indrelid
|
||
JOIN pg_class i ON i.oid = ix.indexrelid
|
||
JOIN pg_am am ON i.relam = am.oid
|
||
JOIN unnest(ix.indkey) WITH ORDINALITY AS x(attnum, ordinality) ON TRUE
|
||
JOIN pg_attribute a ON a.attrelid = t.oid AND a.attnum = x.attnum
|
||
WHERE t.relkind IN ('r', 'p')
|
||
AND t.relname = '%s'
|
||
AND n.nspname = '%s'
|
||
ORDER BY i.relname, x.ordinality`, esc(table), esc(schema))
|
||
|
||
data, _, err := v.Query(query)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
parseBool := func(val interface{}) bool {
|
||
switch v := val.(type) {
|
||
case bool:
|
||
return v
|
||
case string:
|
||
s := strings.ToLower(strings.TrimSpace(v))
|
||
return s == "t" || s == "true" || s == "1" || s == "y" || s == "yes"
|
||
default:
|
||
s := strings.ToLower(strings.TrimSpace(fmt.Sprintf("%v", val)))
|
||
return s == "t" || s == "true" || s == "1" || s == "y" || s == "yes"
|
||
}
|
||
}
|
||
|
||
parseInt := func(val interface{}) int {
|
||
switch v := val.(type) {
|
||
case int:
|
||
return v
|
||
case int64:
|
||
return int(v)
|
||
case float64:
|
||
return int(v)
|
||
case string:
|
||
var n int
|
||
_, _ = fmt.Sscanf(strings.TrimSpace(v), "%d", &n)
|
||
return n
|
||
default:
|
||
var n int
|
||
_, _ = fmt.Sscanf(strings.TrimSpace(fmt.Sprintf("%v", val)), "%d", &n)
|
||
return n
|
||
}
|
||
}
|
||
|
||
var indexes []connection.IndexDefinition
|
||
for _, row := range data {
|
||
isUnique := false
|
||
if val, ok := row["is_unique"]; ok && val != nil {
|
||
isUnique = parseBool(val)
|
||
}
|
||
|
||
nonUnique := 1
|
||
if isUnique {
|
||
nonUnique = 0
|
||
}
|
||
|
||
seq := 0
|
||
if val, ok := row["seq_in_index"]; ok && val != nil {
|
||
seq = parseInt(val)
|
||
}
|
||
|
||
indexType := ""
|
||
if val, ok := row["index_type"]; ok && val != nil {
|
||
indexType = strings.ToUpper(fmt.Sprintf("%v", val))
|
||
}
|
||
if indexType == "" {
|
||
indexType = "BTREE"
|
||
}
|
||
|
||
idx := connection.IndexDefinition{
|
||
Name: fmt.Sprintf("%v", row["index_name"]),
|
||
ColumnName: fmt.Sprintf("%v", row["column_name"]),
|
||
NonUnique: nonUnique,
|
||
SeqInIndex: seq,
|
||
IndexType: indexType,
|
||
}
|
||
indexes = append(indexes, idx)
|
||
}
|
||
return indexes, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetForeignKeys(dbName, tableName string) ([]connection.ForeignKeyDefinition, error) {
|
||
schema := strings.TrimSpace(dbName)
|
||
if schema == "" {
|
||
schema = "public"
|
||
}
|
||
table := strings.TrimSpace(tableName)
|
||
if table == "" {
|
||
return nil, fmt.Errorf("表名不能为空")
|
||
}
|
||
|
||
esc := func(s string) string { return strings.ReplaceAll(s, "'", "''") }
|
||
|
||
query := fmt.Sprintf(`
|
||
SELECT
|
||
tc.constraint_name AS constraint_name,
|
||
kcu.column_name AS column_name,
|
||
ccu.table_schema AS foreign_table_schema,
|
||
ccu.table_name AS foreign_table_name,
|
||
ccu.column_name AS foreign_column_name
|
||
FROM information_schema.table_constraints AS tc
|
||
JOIN information_schema.key_column_usage AS kcu
|
||
ON tc.constraint_name = kcu.constraint_name
|
||
AND tc.table_schema = kcu.table_schema
|
||
JOIN information_schema.constraint_column_usage AS ccu
|
||
ON ccu.constraint_name = tc.constraint_name
|
||
AND ccu.table_schema = tc.table_schema
|
||
WHERE tc.constraint_type = 'FOREIGN KEY'
|
||
AND tc.table_name = '%s'
|
||
AND tc.table_schema = '%s'
|
||
ORDER BY tc.constraint_name, kcu.ordinal_position`, esc(table), esc(schema))
|
||
|
||
data, _, err := v.Query(query)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
var fks []connection.ForeignKeyDefinition
|
||
for _, row := range data {
|
||
refSchema := ""
|
||
if val, ok := row["foreign_table_schema"]; ok && val != nil {
|
||
refSchema = fmt.Sprintf("%v", val)
|
||
}
|
||
refTable := fmt.Sprintf("%v", row["foreign_table_name"])
|
||
refTableName := refTable
|
||
if strings.TrimSpace(refSchema) != "" {
|
||
refTableName = fmt.Sprintf("%s.%s", refSchema, refTable)
|
||
}
|
||
|
||
fk := connection.ForeignKeyDefinition{
|
||
Name: fmt.Sprintf("%v", row["constraint_name"]),
|
||
ColumnName: fmt.Sprintf("%v", row["column_name"]),
|
||
RefTableName: refTableName,
|
||
RefColumnName: fmt.Sprintf("%v", row["foreign_column_name"]),
|
||
ConstraintName: fmt.Sprintf("%v", row["constraint_name"]),
|
||
}
|
||
fks = append(fks, fk)
|
||
}
|
||
return fks, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetTriggers(dbName, tableName string) ([]connection.TriggerDefinition, error) {
|
||
schema := strings.TrimSpace(dbName)
|
||
if schema == "" {
|
||
schema = "public"
|
||
}
|
||
table := strings.TrimSpace(tableName)
|
||
if table == "" {
|
||
return nil, fmt.Errorf("表名不能为空")
|
||
}
|
||
|
||
esc := func(s string) string { return strings.ReplaceAll(s, "'", "''") }
|
||
|
||
query := fmt.Sprintf(`
|
||
SELECT trigger_name, action_timing, event_manipulation, action_statement
|
||
FROM information_schema.triggers
|
||
WHERE event_object_table = '%s'
|
||
AND event_object_schema = '%s'
|
||
ORDER BY trigger_name, event_manipulation`, esc(table), esc(schema))
|
||
|
||
data, _, err := v.Query(query)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
var triggers []connection.TriggerDefinition
|
||
for _, row := range data {
|
||
trig := connection.TriggerDefinition{
|
||
Name: fmt.Sprintf("%v", row["trigger_name"]),
|
||
Timing: fmt.Sprintf("%v", row["action_timing"]),
|
||
Event: fmt.Sprintf("%v", row["event_manipulation"]),
|
||
Statement: fmt.Sprintf("%v", row["action_statement"]),
|
||
}
|
||
triggers = append(triggers, trig)
|
||
}
|
||
return triggers, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) GetAllColumns(dbName string) ([]connection.ColumnDefinitionWithTable, error) {
|
||
query := `
|
||
SELECT table_schema, table_name, column_name, data_type
|
||
FROM information_schema.columns
|
||
WHERE table_schema NOT IN ('pg_catalog', 'information_schema')
|
||
AND table_schema NOT LIKE 'pg_%'
|
||
ORDER BY table_schema, table_name, ordinal_position`
|
||
|
||
data, _, err := v.Query(query)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
var cols []connection.ColumnDefinitionWithTable
|
||
for _, row := range data {
|
||
schema := fmt.Sprintf("%v", row["table_schema"])
|
||
table := fmt.Sprintf("%v", row["table_name"])
|
||
tableName := table
|
||
if strings.TrimSpace(schema) != "" {
|
||
tableName = fmt.Sprintf("%s.%s", schema, table)
|
||
}
|
||
|
||
col := connection.ColumnDefinitionWithTable{
|
||
TableName: tableName,
|
||
Name: fmt.Sprintf("%v", row["column_name"]),
|
||
Type: fmt.Sprintf("%v", row["data_type"]),
|
||
}
|
||
cols = append(cols, col)
|
||
}
|
||
return cols, nil
|
||
}
|
||
|
||
func (v *VastbaseDB) ApplyChanges(tableName string, changes connection.ChangeSet) error {
|
||
if v.conn == nil {
|
||
return fmt.Errorf("连接未打开")
|
||
}
|
||
|
||
tx, err := v.conn.Begin()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
defer tx.Rollback()
|
||
|
||
quoteIdent := func(name string) string {
|
||
n := strings.TrimSpace(name)
|
||
n = strings.Trim(n, "\"")
|
||
n = strings.ReplaceAll(n, "\"", "\"\"")
|
||
if n == "" {
|
||
return "\"\""
|
||
}
|
||
return `"` + n + `"`
|
||
}
|
||
|
||
schema := ""
|
||
table := strings.TrimSpace(tableName)
|
||
if parts := strings.SplitN(table, ".", 2); len(parts) == 2 {
|
||
schema = strings.TrimSpace(parts[0])
|
||
table = strings.TrimSpace(parts[1])
|
||
}
|
||
|
||
qualifiedTable := ""
|
||
if schema != "" {
|
||
qualifiedTable = fmt.Sprintf("%s.%s", quoteIdent(schema), quoteIdent(table))
|
||
} else {
|
||
qualifiedTable = quoteIdent(table)
|
||
}
|
||
|
||
// 1. Deletes
|
||
for _, pk := range changes.Deletes {
|
||
var wheres []string
|
||
var args []interface{}
|
||
idx := 0
|
||
for k, val := range pk {
|
||
idx++
|
||
wheres = append(wheres, fmt.Sprintf("%s = $%d", quoteIdent(k), idx))
|
||
args = append(args, val)
|
||
}
|
||
if len(wheres) == 0 {
|
||
continue
|
||
}
|
||
query := fmt.Sprintf("DELETE FROM %s WHERE %s", qualifiedTable, strings.Join(wheres, " AND "))
|
||
if _, err := tx.Exec(query, args...); err != nil {
|
||
return fmt.Errorf("删除失败:%v", err)
|
||
}
|
||
}
|
||
|
||
// 2. Updates
|
||
for _, update := range changes.Updates {
|
||
var sets []string
|
||
var args []interface{}
|
||
idx := 0
|
||
|
||
for k, val := range update.Values {
|
||
idx++
|
||
sets = append(sets, fmt.Sprintf("%s = $%d", quoteIdent(k), idx))
|
||
args = append(args, val)
|
||
}
|
||
|
||
if len(sets) == 0 {
|
||
continue
|
||
}
|
||
|
||
var wheres []string
|
||
for k, val := range update.Keys {
|
||
idx++
|
||
wheres = append(wheres, fmt.Sprintf("%s = $%d", quoteIdent(k), idx))
|
||
args = append(args, val)
|
||
}
|
||
|
||
if len(wheres) == 0 {
|
||
return fmt.Errorf("更新操作需要主键条件")
|
||
}
|
||
|
||
query := fmt.Sprintf("UPDATE %s SET %s WHERE %s", qualifiedTable, strings.Join(sets, ", "), strings.Join(wheres, " AND "))
|
||
if _, err := tx.Exec(query, args...); err != nil {
|
||
return fmt.Errorf("更新失败:%v", err)
|
||
}
|
||
}
|
||
|
||
// 3. Inserts
|
||
for _, row := range changes.Inserts {
|
||
var cols []string
|
||
var placeholders []string
|
||
var args []interface{}
|
||
idx := 0
|
||
|
||
for k, val := range row {
|
||
idx++
|
||
cols = append(cols, quoteIdent(k))
|
||
placeholders = append(placeholders, fmt.Sprintf("$%d", idx))
|
||
args = append(args, val)
|
||
}
|
||
|
||
if len(cols) == 0 {
|
||
continue
|
||
}
|
||
|
||
query := fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s)", qualifiedTable, strings.Join(cols, ", "), strings.Join(placeholders, ", "))
|
||
if _, err := tx.Exec(query, args...); err != nil {
|
||
return fmt.Errorf("插入失败:%v", err)
|
||
}
|
||
}
|
||
|
||
return tx.Commit()
|
||
}
|