0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-06-04 01:10:35 +00:00
Files
go-sqlite3/sqlite3_go18.go

55 lines
1.5 KiB
Go
Raw Permalink Normal View History

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