Documentation ¶
Overview ¶
包sqlite实现了gdb.Driver,支持SQLite数据库的操作。 md5:52f270ca46090ebc
Index ¶
- func New() gdb.Driver
- type Driver
- func (d *Driver) FormatUpsert(columns []string, list gdb.Map数组, option gdb.DoInsertOption) (string, error)
- func (d *Driver) New(core *gdb.Core, node *gdb.ConfigNode) (gdb.DB, error)
- func (d *Driver) X取表名称数组(ctx context.Context, schema ...string) (tables []string, err error)
- func (d *Driver) X取表字段信息Map(ctx context.Context, table string, schema ...string) (fields map[string]*gdb.TableField, err error)
- func (d *Driver) X底层DoFilter(ctx context.Context, link gdb.Link, sql string, args []interface{}) (newSql string, newArgs []interface{}, err error)
- func (d *Driver) X底层Open(config *gdb.ConfigNode) (db *sql.DB, err error)
- func (d *Driver) X底层取数据库安全字符() (charLeft string, charRight string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Driver ¶
Driver是sqlite数据库的驱动程序。 md5:afc6ba2ecab1097e
func (*Driver) FormatUpsert ¶
func (d *Driver) FormatUpsert(columns []string, list gdb.Map数组, option gdb.DoInsertOption) (string, error)
FormatUpsert 返回用于SQLite的UPSERT类型的SQL子句。 例如:ON CONFLICT (id) DO UPDATE SET ... md5:49f955d5c160f808
func (*Driver) New ¶
New 创建并返回一个用于SQLite的数据库对象。 它实现了gdb.Driver接口,以便作为额外的数据库驱动程序进行安装。 md5:27a088b6550263f7
func (*Driver) X取表字段信息Map ¶
func (d *Driver) X取表字段信息Map(ctx context.Context, table string, schema ...string) (fields map[string]*gdb.TableField, err error)
X取表字段信息Map 获取并返回当前模式下指定表的字段信息。
参见 DriverMysql.X取表字段信息Map。 md5:7f7a75c67e38ad22
func (*Driver) X底层DoFilter ¶
func (d *Driver) X底层DoFilter(ctx context.Context, link gdb.Link, sql string, args []interface{}) (newSql string, newArgs []interface{}, err error)
X底层DoFilter 在将 SQL 字符串提交给底层 SQL 驱动程序之前处理它。 md5:f9ff7431f1478cfb
func (*Driver) X底层Open ¶
X底层Open 创建并返回一个底层的 sql.DB 对象,用于 SQLite。 https://github.com/glebarez/go-sqlite md5:f3c66f09b7236ffa
func (*Driver) X底层取数据库安全字符 ¶
X底层取数据库安全字符 返回这种类型的数据库的安全字符。 md5:8a01432c4ed14729
Click to show internal directories.
Click to hide internal directories.