Documentation ¶
Index ¶
- type AdodbConn
- func (c *AdodbConn) Begin() (driver.Tx, error)
- func (c *AdodbConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error)
- func (c *AdodbConn) Close() error
- func (c *AdodbConn) Ping(ctx context.Context) error
- func (c *AdodbConn) Prepare(query string) (driver.Stmt, error)
- func (c *AdodbConn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error)
- type AdodbDriver
- type AdodbResult
- type AdodbRows
- func (rc *AdodbRows) Close() error
- func (rc *AdodbRows) ColumnTypeDatabaseTypeName(i int) string
- func (rc *AdodbRows) ColumnTypeLength(i int) (length int64, ok bool)
- func (rc *AdodbRows) ColumnTypeNullable(i int) (nullable, ok bool)
- func (rc *AdodbRows) ColumnTypePrecisionScale(i int) (precision, scale int64, ok bool)
- func (rc *AdodbRows) ColumnTypeScanType(i int) reflect.Type
- func (rc *AdodbRows) Columns() []string
- func (rc *AdodbRows) Next(dest []driver.Value) error
- type AdodbStmt
- func (s *AdodbStmt) Close() error
- func (s *AdodbStmt) Exec(args []driver.Value) (driver.Result, error)
- func (s *AdodbStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error)
- func (s *AdodbStmt) NumInput() int
- func (s *AdodbStmt) Query(args []driver.Value) (driver.Rows, error)
- func (s *AdodbStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error)
- type AdodbTx
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdodbConn ¶
type AdodbConn struct {
// contains filtered or unexported fields
}
type AdodbDriver ¶
type AdodbResult ¶
type AdodbResult struct {
// contains filtered or unexported fields
}
func (*AdodbResult) LastInsertId ¶
func (r *AdodbResult) LastInsertId() (int64, error)
func (*AdodbResult) RowsAffected ¶
func (r *AdodbResult) RowsAffected() (int64, error)
type AdodbRows ¶
type AdodbRows struct {
// contains filtered or unexported fields
}
func (*AdodbRows) ColumnTypeDatabaseTypeName ¶
ColumnTypeDatabaseTypeName implement RowsColumnTypeDatabaseTypeName.
func (*AdodbRows) ColumnTypeLength ¶
func (*AdodbRows) ColumnTypeNullable ¶
ColumnTypeNullable implement RowsColumnTypeNullable.
func (*AdodbRows) ColumnTypePrecisionScale ¶
func (*AdodbRows) ColumnTypeScanType ¶
ColumnTypeScanType implement RowsColumnTypeScanType.
type AdodbStmt ¶
type AdodbStmt struct {
// contains filtered or unexported fields
}
func (*AdodbStmt) ExecContext ¶
func (*AdodbStmt) QueryContext ¶
Click to show internal directories.
Click to hide internal directories.