diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-11-04 14:24:22 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-11-04 14:24:22 +0900 |
commit | c95a77965c55783416165ca638dec12c0f0a9fdb (patch) | |
tree | 69e42bf5616a95814d99e764056c8898e4892f46 /sqlite3_context.go | |
parent | implement go18 Pinger (diff) | |
download | golite-c95a77965c55783416165ca638dec12c0f0a9fdb.tar.gz golite-c95a77965c55783416165ca638dec12c0f0a9fdb.tar.xz |
context features
Diffstat (limited to 'sqlite3_context.go')
-rw-r--r-- | sqlite3_context.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sqlite3_context.go b/sqlite3_context.go deleted file mode 100644 index 26e4998..0000000 --- a/sqlite3_context.go +++ /dev/null @@ -1,14 +0,0 @@ -package sqlite3 - -import ( - "context" - "errors" -) - -// Ping implement Pinger. -func (c *SQLiteConn) Ping(ctx context.Context) error { - if c.db == nil { - return errors.New("Connection was closed") - } - return nil -} |