Golang postgres错误常数?

时间:2016-06-01 05:58:41

标签: database postgresql go

我正在尝试使用postgres驱动程序(lib / pq)删除数据库:

db.Exec("DROP DATABASE dbName;")

但是我想根据收到的错误是否奇怪,或者“数据库不存在”错误做一个不同的条件。

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

我试着查看文档,但找不到“数据库不存在”的任何内容。但我确实找到了这个列表:https://www.postgresql.org/docs/9.3/static/errcodes-appendix.html

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

if err.ErrorCode != "xxx"

谢谢。

3 个答案:

答案 0 :(得分:7)

lib/pq包可能会返回*pq.Error类型的错误,这是一个结构。如果是,您可以使用其所有字段来检查错误的详细信息。

这是如何做到的:

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特定的,完整列表可以在这里找到:Error and Notice Message Fields

答案 1 :(得分:0)

你可以用这个: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.
}

答案 2 :(得分:0)

这个包有所有的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”,因此它应该足够可靠。