driver

package
v1.21.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 31, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package driverは、package sqlによって使用されるデータベースドライバが実装するインターフェースを定義します。

ほとんどのコードは、package sqlを使用するべきです。

ドライバのインターフェースは時間の経過とともに進化してきました。ドライバはConnectorとDriverContextのインターフェースを実装する必要があります。 Connector.ConnectとDriver.Openメソッドは、決してErrBadConnを返してはいけません。 ErrBadConnは、Validator、SessionResetter、または接続が既に無効な(閉じられたなど)状態にある場合にのみ返されるべきです。

すべてのConnの実装は、以下のインターフェースを実装する必要があります: Pinger、SessionResetter、およびValidator。

名前付きパラメータやコンテキストがサポートされている場合、ドライバのConnは以下を実装する必要があります: ExecerContext、QueryerContext、ConnPrepareContext、およびConnBeginTx。

カスタムデータ型をサポートするためには、NamedValueCheckerを実装します。NamedValueCheckerは、CheckNamedValueからErrRemoveArgumentを返すことで、クエリごとのオプションをパラメータとして受け入れることも可能にします。

複数の結果セットがサポートされている場合、RowsはRowsNextResultSetを実装する必要があります。 ドライバが返された結果に含まれる型を説明する方法を知っている場合、以下のインターフェースを実装する必要があります: RowsColumnTypeScanType、RowsColumnTypeDatabaseTypeName、RowsColumnTypeLength、RowsColumnTypeNullable、およびRowsColumnTypePrecisionScale。 ある行の値は、Rows型を返すこともあり、それはデータベースカーソル値を表すことができます。

接続が使用後に接続プールに返される前に、実装されている場合にはIsValidが呼び出されます。 別のクエリに再利用される前に、実装されている場合にはResetSessionが呼び出されます。 接続が接続プールに返されないで直接再利用される場合は、再利用の前にResetSessionが呼び出されますが、IsValidは呼び出されません。

Index

Constants

This section is empty.

Variables

View Source
var Bool boolType

Boolは入力値をboolに変換するValueConverterです。

変換ルールは以下の通りです:

  • ブール値は変更されずに返されます
  • 整数の場合、 1はtrueを、 0はfalseを、 その他の整数はエラーとなります
  • 文字列や[]byteの場合、strconv.ParseBoolと同じルールが適用されます
  • それ以外のすべての型はエラーとなります
View Source
var DefaultParameterConverter defaultConverter

DefaultParameterConverterは、StmtがColumnConverterを実装していない場合に使用されるValueConverterのデフォルト実装です。

DefaultParameterConverterは、引数がIsValue(arg)を満たす場合はその引数を直接返します。そうでない場合、引数がValuerを実装している場合はそのValueメソッドを使用してValueを返します。代替として、提供された引数の基底の型を使用してValueに変換します。 基底の整数型はint64に変換され、浮動小数点数はfloat64に変換され、bool型、string型、および[]byte型はそれ自体に変換されます。引数がnilポインタの場合、ConvertValueはnilのValueを返します。引数がnilではないポインタの場合、それは逆参照され、再帰的にConvertValueが呼び出されます。他の型はエラーです。

View Source
var ErrBadConn = errors.New("driver: bad connection")

ErrBadConnは、ドライバがドライバ.Connが不良な状態であることを示すために、 sqlパッケージに返すべきです(たとえば、サーバーが接続を早期に閉じたなど)。 また、sqlパッケージは新しい接続で再試行する必要があります。

重複した操作を防ぐために、可能性がある場合には、ErrBadConnを返してはいけません。 データベースサーバーが操作を実行した可能性があっても、ErrBadConnは返してはいけません。

エラーはerrors.Isを使用してチェックされます。エラーは ErrBadConnをラップするか、Is(error) boolメソッドを実装することがあります。

View Source
var ErrRemoveArgument = errors.New("driver: remove argument from query")

ErrRemoveArgumentは、NamedValueCheckerから返されることがあります。 これは、sqlパッケージに対して引数をドライバのクエリインターフェースに渡さないよう指示するためです。 クエリ固有のオプションやSQLクエリ引数ではない構造体を受け入れる場合に返します。

View Source
var ErrSkip = errors.New("driver: skip fast-path; continue as if unimplemented")

ErrSkipは、一部のオプションのインタフェースメソッドによって、高速経路が利用できないことを実行時に示すために返される場合があります。sqlパッケージは、オプションのインタフェースが実装されていないかのように続行する必要があります。ErrSkipは、明示的に文書化されている場所でのみサポートされます。

View Source
var Int32 int32Type

Int32は、入力値をint64に変換するValueConverterであり、int32の制限を尊重します。

View Source
var ResultNoRows noRows

ResultNoRowsは、DDLコマンド(CREATE TABLEなど)が成功した場合にドライバーが返すための事前定義された結果です。これは、LastInsertIdとRowsAffectedの両方に対してエラーを返します。

View Source
var String stringType

Stringは、入力を文字列に変換するValueConverterです。 値が既に文字列または[]byteの場合は変更されません。 値が他の型の場合は、fmt.Sprintf("%v", v)で文字列に変換されます。

Functions

func IsScanValue

func IsScanValue(v any) bool

IsScanValueはIsValueと同等です。 互換性のために存在します。

func IsValue

func IsValue(v any) bool

IsValue はvが有効なValueパラメータータイプかどうかを報告します。

Types

type ColumnConverter

type ColumnConverter interface {
	// ColumnConverter returns a ValueConverter for the provided
	// column index. If the type of a specific column isn't known
	// or shouldn't be handled specially, DefaultValueConverter
	// can be returned.
	ColumnConverter(idx int) ValueConverter
}

ColumnConverterは、ステートメントが自身の列の型を認識しており、任意の型からドライバーのValueに変換できる場合、Stmtによってオプションで実装されることがあります。 廃止予定 : ドライバーはNamedValueCheckerを実装する必要があります。

type Conn

type Conn interface {
	// Prepare returns a prepared statement, bound to this connection.
	Prepare(query string) (Stmt, error)

	// Close invalidates and potentially stops any current
	// prepared statements and transactions, marking this
	// connection as no longer in use.
	//
	// Because the sql package maintains a free pool of
	// connections and only calls Close when there's a surplus of
	// idle connections, it shouldn't be necessary for drivers to
	// do their own connection caching.
	//
	// Drivers must ensure all network calls made by Close
	// do not block indefinitely (e.g. apply a timeout).
	Close() error

	// Begin starts and returns a new transaction.
	//
	// Deprecated: Drivers should implement ConnBeginTx instead (or additionally).
	Begin() (Tx, error)
}

Connはデータベースへの接続です。同時に複数のゴルーチンで使用されません。

Connは状態を保持していると想定されています。

type ConnBeginTx added in v1.8.0

type ConnBeginTx interface {
	// BeginTx starts and returns a new transaction.
	// If the context is canceled by the user the sql package will
	// call Tx.Rollback before discarding and closing the connection.
	//
	// This must check opts.Isolation to determine if there is a set
	// isolation level. If the driver does not support a non-default
	// level and one is set or if there is a non-default isolation level
	// that is not supported, an error must be returned.
	//
	// This must also check opts.ReadOnly to determine if the read-only
	// value is true to either set the read-only transaction property if supported
	// or return an error if it is not supported.
	BeginTx(ctx context.Context, opts TxOptions) (Tx, error)
}

ConnBeginTxは、コンテキストとTxOptionsを追加してConnインタフェースを拡張します。

type ConnPrepareContext added in v1.8.0

type ConnPrepareContext interface {
	// PrepareContext returns a prepared statement, bound to this connection.
	// context is for the preparation of the statement,
	// it must not store the context within the statement itself.
	PrepareContext(ctx context.Context, query string) (Stmt, error)
}

ConnPrepareContextはコンテキストを使用してConnインターフェースを拡張します。

type Connector added in v1.10.0

type Connector interface {
	// Connect returns a connection to the database.
	// Connect may return a cached connection (one previously
	// closed), but doing so is unnecessary; the sql package
	// maintains a pool of idle connections for efficient re-use.
	//
	// The provided context.Context is for dialing purposes only
	// (see net.DialContext) and should not be stored or used for
	// other purposes. A default timeout should still be used
	// when dialing as a connection pool may call Connect
	// asynchronously to any query.
	//
	// The returned connection is only used by one goroutine at a
	// time.
	Connect(context.Context) (Conn, error)

	// Driver returns the underlying Driver of the Connector,
	// mainly to maintain compatibility with the Driver method
	// on sql.DB.
	Driver() Driver
}

コネクタは、固定の構成でドライバを表し、複数のゴルーチンで使用するための同等の接続を作成できます。

コネクタはsql.OpenDBに渡すことができ、ドライバは独自のsql.DBコンストラクタを実装するため、また、DriverContextのOpenConnectorメソッドによって返されることができます。これにより、ドライバはコンテキストへのアクセスとドライバ構成の繰り返し解析を避けることができます。

コネクタがio.Closerを実装している場合、sqlパッケージのDB.CloseメソッドはCloseを呼び出し、エラー(あれば)を返します。

type Driver

type Driver interface {
	// Open returns a new connection to the database.
	// The name is a string in a driver-specific format.
	//
	// Open may return a cached connection (one previously
	// closed), but doing so is unnecessary; the sql package
	// maintains a pool of idle connections for efficient re-use.
	//
	// The returned connection is only used by one goroutine at a
	// time.
	Open(name string) (Conn, error)
}

Driverはデータベースドライバーによって実装される必要があるインターフェースです。

データベースドライバーは、コンテキストへのアクセスと、接続プールの名前の解析を一度だけ行うために、 接続ごとに一度ずつではなく、DriverContextを実装することもできます。

type DriverContext added in v1.10.0

type DriverContext interface {
	// OpenConnector must parse the name in the same format that Driver.Open
	// parses the name parameter.
	OpenConnector(name string) (Connector, error)
}

もしDriverがDriverContextを実装している場合、sql.DBはOpenConnectorを呼び出してConnectorを取得し、 そのConnectorのConnectメソッドを呼び出して必要な接続を取得します。 これにより、接続ごとにDriverのOpenメソッドを呼び出すのではなく、名前を1回だけ解析することができ、 またper-Connコンテキストにアクセスすることもできます。

type Execer

type Execer interface {
	Exec(query string, args []Value) (Result, error)
}

ExecerはConnによって実装されるかもしれないオプションのインターフェースです。

もしConnがExecerContextまたはExecerのどちらの実装も持っていない場合、 sqlパッケージのDB.Execはまずクエリを準備し、ステートメントを実行し、そしてステートメントを閉じます。

ExecはErrSkipを返す場合があります。

廃止予定: ドライバは代わりにExecerContextを実装するべきです。

type ExecerContext added in v1.8.0

type ExecerContext interface {
	ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
}

ExecerContextはConnによって実装されるかもしれないオプションのインターフェースです。

ConnがExecerContextを実装していない場合、sqlパッケージのDB.ExecはExecerにフォールバックします。 もしConnがExecerも実装していない場合、DB.Execはまずクエリを準備し、ステートメントを実行してからステートメントを閉じます。

ExecContextはErrSkipを返すことがあります。

ExecContextはコンテキストのタイムアウトを尊重し、コンテキストがキャンセルされたら返ります。

type IsolationLevel added in v1.8.0

type IsolationLevel int

IsolationLevelはTxOptionsに保存されるトランザクション分離レベルです。

この型は、sql.IsolationLevelと一緒に定義された値と同じものと考えられるべきです。

type NamedValue added in v1.8.0

type NamedValue struct {

	// もし Name が空でなければ、パラメータの識別子に使用されるべきであり、
	// 順序位置ではないです。
	//
	// Name にはシンボルのプレフィックスはつきません。
	Name string

	// パラメータの序数位置は常に1から始まります。
	Ordinal int

	// Valueはパラメーターの値です。
	Value Value
}

NamedValueは値の名前と値を保持します。

type NamedValueChecker added in v1.9.0

type NamedValueChecker interface {
	// CheckNamedValue is called before passing arguments to the driver
	// and is called in place of any ColumnConverter. CheckNamedValue must do type
	// validation and conversion as appropriate for the driver.
	CheckNamedValue(*NamedValue) error
}

NamedValueCheckerはConnまたはStmtによってオプションで実装されることがあります。これにより、ドライバはデフォルトのValuesタイプを超えたGoおよびデータベースのタイプを処理するための制御を提供します。 sqlパッケージは、値チェッカーを以下の順序でチェックし、最初に一致したもので停止します: Stmt.NamedValueChecker、Conn.NamedValueChecker、Stmt.ColumnConverter、DefaultParameterConverter。 CheckNamedValueがErrRemoveArgumentを返す場合、NamedValueは最終的なクエリ引数に含まれません。これはクエリ自体に特殊なオプションを渡すために使用される場合があります。 ErrSkipが返された場合、列コンバーターのエラーチェックパスが引数に使用されます。ドライバは、独自の特殊なケースを使い果たした後にErrSkipを返すことを望むかもしれません。

type NotNull

type NotNull struct {
	Converter ValueConverter
}

NotNullは、nilを許可しないことでValueConverterを実装する型ですが、他のValueConverterに委譲します。

func (NotNull) ConvertValue

func (n NotNull) ConvertValue(v any) (Value, error)

type Null

type Null struct {
	Converter ValueConverter
}

Nullは、nilを許可することでValueConverterを実装するタイプですが、それ以外の場合は別のValueConverterに委任します。

func (Null) ConvertValue

func (n Null) ConvertValue(v any) (Value, error)

type Pinger added in v1.8.0

type Pinger interface {
	Ping(ctx context.Context) error
}

PingerはConnによって実装される可能性のあるオプションのインターフェースです。

ConnがPingerを実装していない場合、sqlパッケージのDB.PingおよびDB.PingContextは少なくとも1つのConnが利用可能かどうかを確認します。

Conn.PingがErrBadConnを返す場合、DB.PingおよびDB.PingContextはConnをプールから削除します。

type Queryer added in v1.1.0

type Queryer interface {
	Query(query string, args []Value) (Rows, error)
}

QueryerはConnによって実装されるかもしれないオプションのインターフェースです。

ConnがQueryerContextでもQueryerでも実装していない場合、sqlパッケージのDB.Queryはまずクエリを準備し、ステートメントを実行してからステートメントを閉じます。

QueryはErrSkipを返すことがあります。

廃止予定です: ドライバは代わりにQueryerContextを実装するべきです。

type QueryerContext added in v1.8.0

type QueryerContext interface {
	QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
}

QueryerContextは、Connによって実装されるかもしれないオプションのインターフェースです。

ConnがQueryerContextを実装していない場合、sqlパッケージのDB.QueryはQueryerにフォールバックします。 もし、ConnがQueryerを実装していない場合、DB.Queryはまずクエリを準備し、ステートメントを実行してからステートメントを閉じます。

QueryContextはErrSkipを返す場合があります。

QueryContextはコンテキストのタイムアウトに従う必要があり、コンテキストがキャンセルされた場合にreturnします。

type Result

type Result interface {
	// LastInsertId returns the database's auto-generated ID
	// after, for example, an INSERT into a table with primary
	// key.
	LastInsertId() (int64, error)

	// RowsAffected returns the number of rows affected by the
	// query.
	RowsAffected() (int64, error)
}

Resultはクエリの実行結果です。

type Rows

type Rows interface {
	// Columns returns the names of the columns. The number of
	// columns of the result is inferred from the length of the
	// slice. If a particular column name isn't known, an empty
	// string should be returned for that entry.
	Columns() []string

	// Close closes the rows iterator.
	Close() error

	// Next is called to populate the next row of data into
	// the provided slice. The provided slice will be the same
	// size as the Columns() are wide.
	//
	// Next should return io.EOF when there are no more rows.
	//
	// The dest should not be written to outside of Next. Care
	// should be taken when closing Rows not to modify
	// a buffer held in dest.
	Next(dest []Value) error
}

Rowsは実行されたクエリの結果に対するイテレータです。

type RowsAffected

type RowsAffected int64

RowsAffectedは、行数を変更するINSERTまたはUPDATE操作に対する Result を実装します。

func (RowsAffected) LastInsertId

func (RowsAffected) LastInsertId() (int64, error)

func (RowsAffected) RowsAffected

func (v RowsAffected) RowsAffected() (int64, error)

type RowsColumnTypeDatabaseTypeName added in v1.8.0

type RowsColumnTypeDatabaseTypeName interface {
	Rows
	ColumnTypeDatabaseTypeName(index int) string
}

RowsColumnTypeDatabaseTypeNameはRowsによって実装されるかもしれません。長さを除いたデータベースシステムのタイプ名を返す必要があります。タイプ名は大文字であるべきです。 返される型の例: "VARCHAR", "NVARCHAR", "VARCHAR2", "CHAR", "TEXT", "DECIMAL", "SMALLINT", "INT", "BIGINT", "BOOL", "[]BIGINT", "JSONB", "XML", "TIMESTAMP"。

type RowsColumnTypeLength added in v1.8.0

type RowsColumnTypeLength interface {
	Rows
	ColumnTypeLength(index int) (length int64, ok bool)
}

RowsColumnTypeLengthは、Rowsによって実装されるかもしれません。カラムが可変長の場合、カラムタイプの長さを返す必要があります。カラムが可変長のタイプでない場合、okはfalseを返す必要があります。システムの制限以外で長さが制限されていない場合、math.MaxInt64を返す必要があります。以下は、さまざまなタイプの戻り値の例です: TEXT(math.MaxInt64、true) varchar(10)(10、true) nvarchar(10)(10、true) decimal(0、false) int(0、false) bytea(30)(30、true)

type RowsColumnTypeNullable added in v1.8.0

type RowsColumnTypeNullable interface {
	Rows
	ColumnTypeNullable(index int) (nullable, ok bool)
}

RowsColumnTypeNullableは、Rowsによって実装される可能性があります。カラムがnullである可能性がある場合は、nullableの値をtrueにする必要があります。カラムがnullでないことが確認されている場合は、falseにする必要があります。 カラムのヌラビリティが不明な場合は、okをfalseにしてください。

type RowsColumnTypePrecisionScale added in v1.8.0

type RowsColumnTypePrecisionScale interface {
	Rows
	ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool)
}

RowsColumnTypePrecisionScaleはRowsによって実装されるかもしれません。それはデシマル型の精度とスケールを返すべきです。該当しない場合、okはfalseであるべきです。 以下に、さまざまな型の戻り値の例を示します:

decimal(38, 4)    (38, 4, true)
int               (0, 0, false)
decimal           (math.MaxInt64, math.MaxInt64, true)

type RowsColumnTypeScanType added in v1.8.0

type RowsColumnTypeScanType interface {
	Rows
	ColumnTypeScanType(index int) reflect.Type
}

RowsColumnTypeScanTypeは、Rowsによって実装されるかもしれません。スキャンに使用できる値の型を返す必要があります。例えば、データベースのカラムタイプが「bigint」の場合、これは「reflect.TypeOf(int64(0))」を返すべきです。

type RowsNextResultSet added in v1.8.0

type RowsNextResultSet interface {
	Rows

	// HasNextResultSet is called at the end of the current result set and
	// reports whether there is another result set after the current one.
	HasNextResultSet() bool

	// NextResultSet advances the driver to the next result set even
	// if there are remaining rows in the current result set.
	//
	// NextResultSet should return io.EOF when there are no more result sets.
	NextResultSet() error
}

RowsNextResultSetは、ドライバに次の結果セットに進むようにシグナルを送る方法を提供するためにRowsインターフェースを拡張しています。

type SessionResetter added in v1.10.0

type SessionResetter interface {
	// ResetSession is called prior to executing a query on the connection
	// if the connection has been used before. If the driver returns ErrBadConn
	// the connection is discarded.
	ResetSession(ctx context.Context) error
}

SessionResetterは、Connによって実装される可能性があります。これにより、ドライバは接続に関連付けられたセッション状態をリセットし、悪い接続を通知することができます。

type Stmt

type Stmt interface {
	// Close closes the statement.
	//
	// As of Go 1.1, a Stmt will not be closed if it's in use
	// by any queries.
	//
	// Drivers must ensure all network calls made by Close
	// do not block indefinitely (e.g. apply a timeout).
	Close() error

	// NumInput returns the number of placeholder parameters.
	//
	// If NumInput returns >= 0, the sql package will sanity check
	// argument counts from callers and return errors to the caller
	// before the statement's Exec or Query methods are called.
	//
	// NumInput may also return -1, if the driver doesn't know
	// its number of placeholders. In that case, the sql package
	// will not sanity check Exec or Query argument counts.
	NumInput() int

	// Exec executes a query that doesn't return rows, such
	// as an INSERT or UPDATE.
	//
	// Deprecated: Drivers should implement StmtExecContext instead (or additionally).
	Exec(args []Value) (Result, error)

	// Query executes a query that may return rows, such as a
	// SELECT.
	//
	// Deprecated: Drivers should implement StmtQueryContext instead (or additionally).
	Query(args []Value) (Rows, error)
}

Stmtはプリペアドステートメントです。これはConnにバインドされており、複数のゴルーチンで同時に使用されません。

type StmtExecContext added in v1.8.0

type StmtExecContext interface {
	// ExecContext executes a query that doesn't return rows, such
	// as an INSERT or UPDATE.
	//
	// ExecContext must honor the context timeout and return when it is canceled.
	ExecContext(ctx context.Context, args []NamedValue) (Result, error)
}

StmtExecContextはコンテキストを提供することにより、Stmtインターフェースを拡張します。

type StmtQueryContext added in v1.8.0

type StmtQueryContext interface {
	// QueryContext executes a query that may return rows, such as a
	// SELECT.
	//
	// QueryContext must honor the context timeout and return when it is canceled.
	QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
}

StmtQueryContextはコンテキストを持つQueryを提供することにより、Stmtインターフェースを強化します。

type Tx

type Tx interface {
	Commit() error
	Rollback() error
}

Txはトランザクションです。

type TxOptions added in v1.8.0

type TxOptions struct {
	Isolation IsolationLevel
	ReadOnly  bool
}

TxOptionsはトランザクションのオプションを保持します。

この型はsql.TxOptionsと同一と見なされるべきです。

type Validator added in v1.15.0

type Validator interface {
	// IsValid is called prior to placing the connection into the
	// connection pool. The connection will be discarded if false is returned.
	IsValid() bool
}

Validaterは、Connによって実装されることがあります。これにより、ドライバーは接続が有効であるか、破棄すべきかを示すことができます。

実装されている場合、ドライバーはクエリから基礎となるエラーを返すことができます。たとえ接続プールによって接続が破棄されるべきであってもです。

type Value

type Value any

Valueは、ドライバが扱える必要がある値です。 nil、データベースドライバのNamedValueCheckerインターフェースで扱われる型、または次のいずれかの型のインスタンスです:

int64
float64
bool
[]byte
string
time.Time

ドライバがカーソルをサポートしている場合、返されたValueはこのパッケージのRowsインターフェースも実装する場合があります。 これは、ユーザが "select cursor(select * from my_table) from dual" のようなカーソルを選択した場合に使用されます。 セレクトのRowsがクローズされると、カーソルのRowsもクローズされます。

type ValueConverter

type ValueConverter interface {
	// ConvertValue converts a value to a driver Value.
	ConvertValue(v any) (Value, error)
}

ValueConverterはConvertValueメソッドを提供するインターフェースです。

ドライバーパッケージによってさまざまなValueConverterの実装が提供され、 ドライバー間の変換の一貫性を提供します。ValueConverterにはいくつかの用途があります:

  • sqlパッケージによって提供されるValue型から、 データベーステーブルの特定の列型に変換し、 特定のint64がテーブルのuint16列に合うか確認するなどの作業を行います。

  • データベースから取得された値をドライバーのValue型のいずれかに変換します。

  • sqlパッケージによって、スキャン中にドライバーのValue型からユーザーの型に変換します。

type Valuer

type Valuer interface {
	// Value returns a driver Value.
	// Value must not panic.
	Value() (Value, error)
}

ValuerはValueメソッドを提供するインターフェースです。

Valuerインターフェースを実装する型は、自分自身をドライバの値に変換できます。

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL