mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 04:07:47 +08:00
55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package pgsql implements gdb.Driver, which supports operations for database PostgreSQL.
|
|
//
|
|
// Note:
|
|
// 1. It does not support Replace features.
|
|
// 2. It does not support Insert Ignore features.
|
|
package pgsql
|
|
|
|
import (
|
|
_ "github.com/lib/pq"
|
|
|
|
"github.com/gogf/gf/v2/database/gdb"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
)
|
|
|
|
// Driver is the driver for postgresql database.
|
|
type Driver struct {
|
|
*gdb.Core
|
|
}
|
|
|
|
const (
|
|
internalPrimaryKeyInCtx gctx.StrKey = "primary_key"
|
|
defaultSchema string = "public"
|
|
quoteChar string = `"`
|
|
)
|
|
|
|
func init() {
|
|
if err := gdb.Register(`pgsql`, New()); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// New create and returns a driver that implements gdb.Driver, which supports operations for PostgreSql.
|
|
func New() gdb.Driver {
|
|
return &Driver{}
|
|
}
|
|
|
|
// New creates and returns a database object for postgresql.
|
|
// It implements the interface of gdb.Driver for extra database driver installation.
|
|
func (d *Driver) New(core *gdb.Core, node *gdb.ConfigNode) (gdb.DB, error) {
|
|
return &Driver{
|
|
Core: core,
|
|
}, nil
|
|
}
|
|
|
|
// GetChars returns the security char for this type of database.
|
|
func (d *Driver) GetChars() (charLeft string, charRight string) {
|
|
return quoteChar, quoteChar
|
|
}
|