Skip to content

Commit

Permalink
fix #27
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Dec 15, 2016
1 parent 056f235 commit 77eae5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlite3_go18.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func (c *SQLiteConn) PrepareContext(ctx context.Context, query string) (driver.S
return c.prepare(ctx, query)
}

// BeginContext implement ConnBeginContext.
func (c *SQLiteConn) BeginContext(ctx context.Context) (driver.Tx, error) {
// BeginTx implement ConnBeginTx.
func (c *SQLiteConn) BeginTx(ctx context.Context) (driver.Tx, error) {
return c.begin(ctx)
}

Expand Down

0 comments on commit 77eae5a

Please sign in to comment.