猿问

db.Exec(...) 返回的错误是否有代码?

我正在尝试通过执行以下操作使用 postgres 驱动程序(lib/pq)删除数据库:

db.Exec("DROP DATABASE dbName;")

但是我想根据收到的错误是奇怪的东西还是“数据库不存在”错误来做一个不同的条件。

是否有一个常量变量或我可以用来检查返回的错误是否是“数据库不存在”错误消息,或者我必须自己手动解析错误字符串?

我试图查看文档,但找不到“数据库不存在”的任何内容。然而,我确实找到了这个列表

也许它适合其他一些错误代码?此外,我不太确定通过 Postgres 驱动程序获取和比较错误代码的语义正确方法。我想我应该做这样的事情:

if err.ErrorCode != "xxx"


一只名叫tom的猫
浏览 301回答 3
3回答

收到一只叮咚

lib/pq包可能会返回类型*pq.Error为 struct 的错误。如果是这样,您可以使用其所有字段来检查错误的详细信息。这是可以做到的:if err, ok := err.(*pq.Error); ok {    // Here err is of type *pq.Error, you may inspect all its fields, e.g.:    fmt.Println("pq error:", err.Code.Name())}pq.Error 具有以下字段:type Error struct {    Severity         string    Code             ErrorCode    Message          string    Detail           string    Hint             string    Position         string    InternalPosition string    InternalQuery    string    Where            string    Schema           string    Table            string    Column           string    DataTypeName     string    Constraint       string    File             string    Line             string    Routine          string}这些字段的含义和可能的值是 Postres 特定的,完整列表可以在这里找到:错误和通知消息字段

MMMHUHU

你可以使用这个:https ://github.com/omeid/pgerror它有很多针对各种 postgres 错误的映射。使用该软件包,您可以执行以下操作(摘自自述文件):// example use:_, err = stmt.Exec(SomeInsertStateMent, params...)if err != nil {  if e := pgerror.UniqueViolation(err); e != nil {  // you can use e here to check the fields et al    return SomeThingAlreadyExists  }  return err // other cases.}

猛跑小猪

这个包有所有的 PG 错误常量: https ://github.com/jackc/pgerrcode只需导入即可:import "github.com/jackc/pgerrcode"// ...if err, ok := err.(*pq.Error); ok {  if err.Code == pgerrcode.UniqueViolation {    return fmt.Errorf("unique field violation on column %s", err.Column)  }}该软件包也属于 2 或 3 个最流行的 Go PostgreSQL 驱动程序之一,称为“pgx”,因此它应该足够可靠。
随时随地看视频慕课网APP

相关分类

Go
我要回答