mirror of
https://gitee.com/johng/gf
synced 2026-06-06 16:21:40 +08:00
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
// Copyright 2017 gf Author(https://github.com/gogf/gf). 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.
|
||
//
|
||
// Note:
|
||
// 1. It needs manually import: _ "github.com/mattn/go-sqlite3"
|
||
// 2. It does not support Save/Replace features.
|
||
|
||
package gdb
|
||
|
||
import (
|
||
"database/sql"
|
||
"github.com/gogf/gf/internal/intlog"
|
||
"github.com/gogf/gf/text/gstr"
|
||
)
|
||
|
||
// DriverSqlite is the driver for sqlite database.
|
||
type DriverSqlite struct {
|
||
*Core
|
||
}
|
||
|
||
// New creates and returns a database object for sqlite.
|
||
// It implements the interface of gdb.Driver for extra database driver installation.
|
||
func (d *DriverSqlite) New(core *Core, node *ConfigNode) (DB, error) {
|
||
return &DriverSqlite{
|
||
Core: core,
|
||
}, nil
|
||
}
|
||
|
||
// Open creates and returns a underlying sql.DB object for sqlite.
|
||
func (d *DriverSqlite) Open(config *ConfigNode) (*sql.DB, error) {
|
||
var source string
|
||
if config.LinkInfo != "" {
|
||
source = config.LinkInfo
|
||
} else {
|
||
source = config.Name
|
||
}
|
||
intlog.Printf("Open: %s", source)
|
||
if db, err := sql.Open("sqlite3", source); err == nil {
|
||
return db, nil
|
||
} else {
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
// GetChars returns the security char for this type of database.
|
||
func (d *DriverSqlite) GetChars() (charLeft string, charRight string) {
|
||
return "`", "`"
|
||
}
|
||
|
||
// HandleSqlBeforeCommit deals with the sql string before commits it to underlying sql driver.
|
||
// @todo 需要增加对Save方法的支持,可使用正则来实现替换,
|
||
// @todo 将ON DUPLICATE KEY UPDATE触发器修改为两条SQL语句(INSERT OR IGNORE & UPDATE)
|
||
func (d *DriverSqlite) HandleSqlBeforeCommit(link Link, sql string, args []interface{}) (string, []interface{}) {
|
||
return sql, args
|
||
}
|
||
|
||
// Tables retrieves and returns the tables of current schema.
|
||
// It's mainly used in cli tool chain for automatically generating the models.
|
||
// TODO
|
||
func (d *DriverSqlite) Tables(schema ...string) (tables []string, err error) {
|
||
return
|
||
}
|
||
|
||
// TableFields retrieves and returns the fields information of specified table of current schema.
|
||
// TODO
|
||
func (d *DriverSqlite) TableFields(table string, schema ...string) (fields map[string]*TableField, err error) {
|
||
table = gstr.Trim(table)
|
||
if gstr.Contains(table, " ") {
|
||
panic("function TableFields supports only single table operations")
|
||
}
|
||
return
|
||
}
|