Documentation
¶
Index ¶
- type RedisConn
- func (c *RedisConn) Begin() (driver.Tx, error)
- func (c *RedisConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error)
- func (c *RedisConn) Close() error
- func (c *RedisConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error)
- func (c *RedisConn) Ping(ctx context.Context) error
- func (c *RedisConn) Prepare(query string) (driver.Stmt, error)
- func (c *RedisConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error)
- type RedisDriver
- type RedisResult
- type RedisRows
- func (r *RedisRows) Close() error
- func (r *RedisRows) ColumnTypeDatabaseTypeName(index int) string
- func (r *RedisRows) Columns() []string
- func (r *RedisRows) Next(dest []driver.Value) error
- func (r *RedisRows) RowsColumnTypeLength(index int) (length int64, ok bool)
- func (r *RedisRows) RowsColumnTypeScanType(index int) reflect.Type
- type RedisTx
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RedisConn ¶
type RedisConn struct {
// contains filtered or unexported fields
}
func (*RedisConn) ExecContext ¶
type RedisDriver ¶
type RedisDriver struct { }
type RedisResult ¶
type RedisResult struct { }
func (*RedisResult) LastInsertId ¶
func (r *RedisResult) LastInsertId() (int64, error)
func (*RedisResult) RowsAffected ¶
func (r *RedisResult) RowsAffected() (int64, error)
type RedisRows ¶
type RedisRows struct {
// contains filtered or unexported fields
}
func (*RedisRows) ColumnTypeDatabaseTypeName ¶
func (*RedisRows) RowsColumnTypeLength ¶
Click to show internal directories.
Click to hide internal directories.