Documentation ¶
Overview ¶
包mssql实现了gdb.Driver,它支持MSSql数据库的操作。
注意: 1. 它不支持Replace功能。 2. 它不支持LastInsertId。 md5:fb4f98bf77e784a6
Index ¶
- func New() gdb.Driver
- type Driver
- 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)
- func (d *Driver) X底层插入(ctx context.Context, link gdb.Link, table string, list gdb.Map数组, ...) (result sql.Result, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Driver ¶
Driver是SQL服务器数据库的驱动程序。 md5:5c5e74aefaf2ae3d
func (*Driver) New ¶
New 创建并返回一个用于SQL服务器的数据库对象。 它实现了gdb.Driver接口,以便于额外的数据库驱动安装。 md5:ce3ce027533c5bb6
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底层取数据库安全字符 ¶
X底层取数据库安全字符 返回这种类型的数据库的安全字符。 md5:8a01432c4ed14729
Click to show internal directories.
Click to hide internal directories.