2019-11-18 12:03:31 +03:00
|
|
|
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
|
2016-11-06 07:16:38 +03:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2024-01-25 16:36:27 +03:00
|
|
|
//go:build cgo && go1.8
|
|
|
|
// +build cgo,go1.8
|
2016-11-04 09:07:51 +03:00
|
|
|
|
2016-11-04 08:24:22 +03:00
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql/driver"
|
|
|
|
|
2016-11-06 07:16:38 +03:00
|
|
|
"context"
|
2016-11-04 08:24:22 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Ping implement Pinger.
|
|
|
|
func (c *SQLiteConn) Ping(ctx context.Context) error {
|
|
|
|
if c.db == nil {
|
2019-06-18 23:33:26 +03:00
|
|
|
// must be ErrBadConn for sql to close the database
|
|
|
|
return driver.ErrBadConn
|
2016-11-04 08:24:22 +03:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-04 18:40:06 +03:00
|
|
|
// QueryContext implement QueryerContext.
|
2016-11-04 08:24:22 +03:00
|
|
|
func (c *SQLiteConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
|
2023-02-12 01:14:42 +03:00
|
|
|
return c.query(ctx, query, args)
|
2016-11-04 08:24:22 +03:00
|
|
|
}
|
|
|
|
|
2016-11-04 18:40:06 +03:00
|
|
|
// ExecContext implement ExecerContext.
|
2016-11-04 09:00:29 +03:00
|
|
|
func (c *SQLiteConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
|
2023-02-12 01:14:42 +03:00
|
|
|
return c.exec(ctx, query, args)
|
2016-11-04 09:00:29 +03:00
|
|
|
}
|
|
|
|
|
2016-11-04 18:40:06 +03:00
|
|
|
// PrepareContext implement ConnPrepareContext.
|
2016-11-04 09:11:24 +03:00
|
|
|
func (c *SQLiteConn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
|
|
|
|
return c.prepare(ctx, query)
|
|
|
|
}
|
|
|
|
|
2016-12-15 05:41:22 +03:00
|
|
|
// BeginTx implement ConnBeginTx.
|
2016-12-15 07:15:57 +03:00
|
|
|
func (c *SQLiteConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
|
2016-11-04 09:15:16 +03:00
|
|
|
return c.begin(ctx)
|
|
|
|
}
|
|
|
|
|
2016-11-04 18:40:06 +03:00
|
|
|
// QueryContext implement QueryerContext.
|
2016-11-04 08:24:22 +03:00
|
|
|
func (s *SQLiteStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {
|
2023-02-12 01:14:42 +03:00
|
|
|
return s.query(ctx, args)
|
2016-11-04 08:24:22 +03:00
|
|
|
}
|
2016-11-04 09:00:29 +03:00
|
|
|
|
2016-11-04 18:40:06 +03:00
|
|
|
// ExecContext implement ExecerContext.
|
2016-11-04 09:00:29 +03:00
|
|
|
func (s *SQLiteStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
|
2023-02-12 01:14:42 +03:00
|
|
|
return s.exec(ctx, args)
|
2016-11-04 09:00:29 +03:00
|
|
|
}
|