Documentation ¶
Overview ¶
This file has automatically been generated on Wed Feb 26 15:50:25 +05 2020. DO NOT EDIT.
Index ¶
- func ColumnTypeDatabaseTypeName(ci *sql.ColumnType) string
- func ColumnTypeDecimalSize(ci *sql.ColumnType) (int64, int64, bool)
- func ColumnTypeLength(ci *sql.ColumnType) (int64, bool)
- func ColumnTypeName(ci *sql.ColumnType) string
- func ColumnTypeNullable(ci *sql.ColumnType) (bool, bool)
- func ColumnTypeScanType(ci *sql.ColumnType) reflect.Type
- func ConnBeginTx(c *sql.Conn, ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error)
- func ConnClose(c *sql.Conn) error
- func ConnExecContext(c *sql.Conn, ctx context.Context, query string, args ...interface{}) (sql.Result, error)
- func ConnPingContext(c *sql.Conn, ctx context.Context) error
- func ConnPrepareContext(c *sql.Conn, ctx context.Context, query string) (*sql.Stmt, error)
- func ConnQueryContext(c *sql.Conn, ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
- func ConnQueryRowContext(c *sql.Conn, ctx context.Context, query string, args ...interface{}) *sql.Row
- func ConnRaw(c *sql.Conn, f func(driverConn interface{}) error) error
- func DBBegin(db *sql.DB) (*sql.Tx, error)
- func DBBeginTx(db *sql.DB, ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error)
- func DBClose(db *sql.DB) error
- func DBConn(db *sql.DB, ctx context.Context) (*sql.Conn, error)
- func DBDriver(db *sql.DB) driver.Driver
- func DBExec(db *sql.DB, query string, args ...interface{}) (sql.Result, error)
- func DBExecContext(db *sql.DB, ctx context.Context, query string, args ...interface{}) (sql.Result, error)
- func DBPing(db *sql.DB) error
- func DBPingContext(db *sql.DB, ctx context.Context) error
- func DBPrepare(db *sql.DB, query string) (*sql.Stmt, error)
- func DBPrepareContext(db *sql.DB, ctx context.Context, query string) (*sql.Stmt, error)
- func DBQuery(db *sql.DB, query string, args ...interface{}) (*sql.Rows, error)
- func DBQueryContext(db *sql.DB, ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
- func DBQueryRow(db *sql.DB, query string, args ...interface{}) *sql.Row
- func DBQueryRowContext(db *sql.DB, ctx context.Context, query string, args ...interface{}) *sql.Row
- func DBStats(db *sql.DB) sql.DBStats
- func Drivers() []string
- func IsolationLevelString(i sql.IsolationLevel) string
- func Named(name string, value interface{}) sql.NamedArg
- func NullBoolScan(n *sql.NullBool, value interface{}) error
- func NullBoolValue(n sql.NullBool) (driver.Value, error)
- func NullFloat64Scan(n *sql.NullFloat64, value interface{}) error
- func NullFloat64Value(n sql.NullFloat64) (driver.Value, error)
- func NullInt32Scan(n *sql.NullInt32, value interface{}) error
- func NullInt32Value(n sql.NullInt32) (driver.Value, error)
- func NullInt64Scan(n *sql.NullInt64, value interface{}) error
- func NullInt64Value(n sql.NullInt64) (driver.Value, error)
- func NullStringScan(ns *sql.NullString, value interface{}) error
- func NullStringValue(ns sql.NullString) (driver.Value, error)
- func NullTimeScan(n *sql.NullTime, value interface{}) error
- func NullTimeValue(n sql.NullTime) (driver.Value, error)
- func Open(driverName, dataSourceName string) (*sql.DB, error)
- func OpenDB(c driver.Connector) *sql.DB
- func RowScan(r *sql.Row, dest ...interface{}) error
- func RowsClose(rs *sql.Rows) error
- func RowsColumnTypes(rs *sql.Rows) ([]*sql.ColumnType, error)
- func RowsColumns(rs *sql.Rows) ([]string, error)
- func RowsErr(rs *sql.Rows) error
- func RowsNext(rs *sql.Rows) bool
- func RowsNextResultSet(rs *sql.Rows) bool
- func RowsScan(rs *sql.Rows, dest ...interface{}) error
- func StmtClose(s *sql.Stmt) error
- func StmtExec(s *sql.Stmt, args ...interface{}) (sql.Result, error)
- func StmtExecContext(s *sql.Stmt, ctx context.Context, args ...interface{}) (sql.Result, error)
- func StmtQuery(s *sql.Stmt, args ...interface{}) (*sql.Rows, error)
- func StmtQueryContext(s *sql.Stmt, ctx context.Context, args ...interface{}) (*sql.Rows, error)
- func StmtQueryRow(s *sql.Stmt, args ...interface{}) *sql.Row
- func StmtQueryRowContext(s *sql.Stmt, ctx context.Context, args ...interface{}) *sql.Row
- func TxCommit(tx *sql.Tx) error
- func TxExec(tx *sql.Tx, query string, args ...interface{}) (sql.Result, error)
- func TxExecContext(tx *sql.Tx, ctx context.Context, query string, args ...interface{}) (sql.Result, error)
- func TxPrepare(tx *sql.Tx, query string) (*sql.Stmt, error)
- func TxPrepareContext(tx *sql.Tx, ctx context.Context, query string) (*sql.Stmt, error)
- func TxQuery(tx *sql.Tx, query string, args ...interface{}) (*sql.Rows, error)
- func TxQueryContext(tx *sql.Tx, ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
- func TxQueryRow(tx *sql.Tx, query string, args ...interface{}) *sql.Row
- func TxQueryRowContext(tx *sql.Tx, ctx context.Context, query string, args ...interface{}) *sql.Row
- func TxRollback(tx *sql.Tx) error
- func TxStmt(tx *sql.Tx, stmt *sql.Stmt) *sql.Stmt
- func TxStmtContext(tx *sql.Tx, ctx context.Context, stmt *sql.Stmt) *sql.Stmt
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ColumnTypeDatabaseTypeName ¶
func ColumnTypeDatabaseTypeName(ci *sql.ColumnType) string
func ColumnTypeDecimalSize ¶
func ColumnTypeDecimalSize(ci *sql.ColumnType) (int64, int64, bool)
func ColumnTypeLength ¶
func ColumnTypeLength(ci *sql.ColumnType) (int64, bool)
func ColumnTypeName ¶
func ColumnTypeName(ci *sql.ColumnType) string
func ColumnTypeNullable ¶
func ColumnTypeNullable(ci *sql.ColumnType) (bool, bool)
func ColumnTypeScanType ¶
func ColumnTypeScanType(ci *sql.ColumnType) reflect.Type
func ConnBeginTx ¶
func ConnExecContext ¶
func ConnPrepareContext ¶
func ConnQueryContext ¶
func ConnQueryRowContext ¶
func DBExecContext ¶
func DBPrepareContext ¶
func DBQueryContext ¶
func DBQueryRowContext ¶
func IsolationLevelString ¶
func IsolationLevelString(i sql.IsolationLevel) string
func NullBoolScan ¶
func NullFloat64Scan ¶
func NullFloat64Scan(n *sql.NullFloat64, value interface{}) error
func NullFloat64Value ¶
func NullFloat64Value(n sql.NullFloat64) (driver.Value, error)
func NullInt32Scan ¶
func NullInt64Scan ¶
func NullStringScan ¶
func NullStringScan(ns *sql.NullString, value interface{}) error
func NullStringValue ¶
func NullStringValue(ns sql.NullString) (driver.Value, error)
func NullTimeScan ¶
func RowsColumnTypes ¶
func RowsColumnTypes(rs *sql.Rows) ([]*sql.ColumnType, error)
func RowsNextResultSet ¶
func StmtExecContext ¶
func StmtQueryContext ¶
func StmtQueryRowContext ¶
func TxExecContext ¶
func TxPrepareContext ¶
func TxQueryContext ¶
func TxQueryRowContext ¶
func TxRollback ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.