Gorm 原始 SQL 查询执行

问题描述 投票:0回答:1

我使用 Golang 的 Gorm 库运行 SQL 查询来检查表是否存在。下面是我的代码。

package main

import (
    "fmt"
    "log"

    "gorm.io/driver/postgres"
    "gorm.io/gorm"

    _ "github.com/lib/pq"
)

// App sets up and runs the app
type App struct {
    DB *gorm.DB
}

`const tableCreationQuery = `SELECT count (*) 
FROM information_schema.TABLES 
WHERE (TABLE_SCHEMA = 'api_test') AND (TABLE_NAME = 'Users')`

func ensureTableExists() {
    if err := a.DB.Exec(tableCreationQuery); err != nil {
        log.Fatal(err)
    }
}`

预期响应应为

1
0
。我从另一个 Stack Overflow 答案中得到了这个。相反,我得到了这个:

2020/09/03 00:27:18 &{0xc000148900 1 0xc000119ba0 0} 退出状态1 认证失败 0.287s

我未经训练的头脑说它是一个指针,但我如何引用返回的值来确定其中包含的内容?

sql postgresql go go-gorm
1个回答
6
投票

如果你想检查你的SQL语句是否在GORM中成功执行,你可以使用以下命令:

tx := DB.Exec(sqlStr, args...)

if tx.Error != nil {
    return false
}

return true

但是,在您的示例中使用 SELECT 语句,那么您需要检查结果,这将更适合使用如下所示的 DB.Raw() 方法

var exists bool
DB.Raw(sqlStr).Row().Scan(&exists)
return exists
© www.soinside.com 2019 - 2024. All rights reserved.