Sign in
go
/
go
/
97124af99a9a0f0ec1b3453c67c8af474aabd660
/
src
/
database
/
sql
1091b50
database/sql: remove duplicate validation
by Tamir Duberstein
· 7 years ago
8da7706
database/sql: include SQL column name in Scan() error message
by HaraldNordgren
· 7 years ago
651ddbd
database/sql: buffers provided to Rows.Next should not be modified by drivers
by Daniel Theophanes
· 7 years ago
1b69d19
database/sql: fix TestConversions when count > 1
by Daniel Theophanes
· 7 years ago
78583a1
database/sql: fix nil pointer use within withLock
by Daniel Theophanes
· 7 years ago
3aeb395
database/sql/driver: update Value doc, can be driver supported type
by Daniel Theophanes
· 7 years ago
b36b12b
database/sql/driver: explain Driver vs DriverContext vs Connector
by Russ Cox
· 7 years ago
bcf964d
database/sql: fix transaction leak
by kirk
· 7 years ago
262141a
database/sql: check for arg counts after eliminating arguments
by Daniel Theophanes
· 7 years ago
b44b2fe
database/sql: allow OpenConnector in a driver.Driver interface
by Daniel Theophanes
· 7 years ago
b9ebc67
database/sql/driver: document that Execer, Queryer need not be implemented
by Russ Cox
· 7 years ago
b9dca1b
database/sql: fix ctx.Done() == nil check
by Russ Cox
· 7 years ago
442d15a
database/sql/driver: rename ResetSessioner to SessionResetter
by Russ Cox
· 7 years ago
f7df55d
database/sql: do not leak the connectionResetter goroutine
by Daniel Theophanes
· 7 years ago
8db19a4
all: change github.com issue links to golang.org
by Leigh McCulloch
· 7 years ago
ff4ee88
database/sql: scan into *time.Time without reflection
by Daniel Theophanes
· 7 years ago
1126d14
database/sql: ensure all driver interfaces are called under single lock
by Daniel Theophanes
· 7 years ago
6a223b8
database/sql: add driver.ResetSessioner and add pool support
by Daniel Theophanes
· 7 years ago
3b9d947
Revert "database/sql: add driver.ResetSessioner and add pool support"
by Russ Cox
· 7 years ago
2620ac3
database/sql: add driver.ResetSessioner and add pool support
by Daniel Theophanes
· 7 years ago
5327148
database/sql: allow drivers to only implement Context variants
by Daniel Theophanes
· 7 years ago
a9afa4e
database/sql: fix example usage of Out
by Tim Cooper
· 7 years ago
292366e
Revert "database/sql: prevent race in driver by locking dc in Next"
by Daniel Theophanes
· 7 years ago
897080d
database/sql: prevent race in driver by locking dc in Next
by Daniel Theophanes
· 8 years ago
678ce97
database/sql: fix unreachable code in ColumnTypes test
by Julien Schmidt
· 7 years ago
3487c4e
database/sql: convertAssign string and time.Time into RawBytes
by Cyrill Schumacher
· 7 years ago
70bcd2c
database/sql: TestConversions add forgotten fields wantbytes and wantraw
by Cyrill Schumacher
· 7 years ago
14a1d93
database/sql: update minor sql docs
by Daniel Theophanes
· 7 years ago
e6358c7
database/sql: add OpenDB to directly create a *DB without a DSN.
by James Lawrence
· 8 years ago
e16dc7d
database/sql: fix Conn's doc typo
by Davor Kapsa
· 8 years ago
ea5e3bd
all: fix easy-to-miss typos
by Agniva De Sarker
· 8 years ago
bd08803
database/sql: fail on unsupported options when context is un-cancellable
by Matt Dee
· 8 years ago
e9b9dfe
database/sql: fix wrong method name in description
by Alexey Palazhchenko
· 8 years ago
445652f
database/sql: fix outdated package name in doc.txt
by Martin Garton
· 8 years ago
cd24a8a
database/sql: ensure a Stmt from a Conn executes on the same driver.Conn
by Daniel Theophanes
· 8 years ago
5c37397
database/sql: correct level of write to same var for race detector
by Daniel Theophanes
· 8 years ago
3bcdbe5
database/sql: properly document QueryRow
by Sarah Adams
· 8 years ago
b0d592c
database/sql: prevent race on Rows close with Tx Rollback
by Daniel Theophanes
· 8 years ago
3820191
Revert "database/sql: Use Tx.ctx in Tx non-context methods"
by Daniel Theophanes
· 8 years ago
ef0f7fb
database/sql: Use Tx.ctx in Tx non-context methods
by Bulat Gaifullin
· 8 years ago
729685c
database/sql: ensure Rows is closed when Tx closes
by Daniel Theophanes
· 8 years ago
1865a56
database/sql: allow Stmt Query and Exec methods to open a new conn
by Daniel Theophanes
· 8 years ago
a9bf3b2
database/sql: allow drivers to support custom arg types
by Daniel Theophanes
· 8 years ago
2133d63
database/sql: ensure releaseConn is defined before a possible close
by Daniel Theophanes
· 8 years ago
d234f9a
database/sql: allow using a single connection from the database
by Daniel Theophanes
· 8 years ago
dec95d8
database/sql: correctly guard the query Row preventing early release
by Daniel Theophanes
· 8 years ago
ab0e901
database/sql: de-duplicate various methods
by Daniel Theophanes
· 8 years ago
5a45a15
database/sql: support scanning into user defined string types
by Daniel Theophanes
· 8 years ago
6fbedc1
database/sql: fix spelling mistake in tests
by Kevin Burke
· 8 years ago
82e1732
database/sql: proper prepared statement support in transactions
by Sarah Adams
· 8 years ago
50ab37d
database/sql: convert test timeouts to explicit waits with checks
by Daniel Theophanes
· 8 years ago
a335c34
database/sql: ensure driverConns are closed if not returned to pool
by Daniel Theophanes
· 8 years ago
3a6842a
database/sql: replace the expr of timeunit * N with N * timeunit in test
by Mikio Hara
· 8 years ago
5630d39
database/sql: fix nits in test
by Mikio Hara
· 8 years ago
4f6d4bb
database/sql: do not exhaust connection pool on conn request timeout
by Daniel Theophanes
· 8 years ago
c57d91e
database/sql: fix typo
by Kevin Burke
· 8 years ago
c026845
database/sql: record the context error in Rows if canceled
by Daniel Theophanes
· 8 years ago
ec4062f
database/sql: fix spelling mistake
by Kevin Burke
· 8 years ago
2b283ce
database/sql: fix race when canceling queries immediately
by Daniel Theophanes
· 8 years ago
165cfbc
database/sql: let tests wait for db pool to come to expected state
by Daniel Theophanes
· 8 years ago
067bab0
all: fix misspellings
by shawnps
· 8 years ago
af7bc07
database/sql: fix typo and wording
by Kevin Burke
· 8 years ago
9def857
database/sql: prevent Tx.rollback from racing Tx.close
by Daniel Theophanes
· 8 years ago
d0501f1
database/sql: do not store Tx options in Context
by Daniel Theophanes
· 8 years ago
454c234
database/sql: use complete sentences in new docs
by Brad Fitzpatrick
· 8 years ago
e12ce1e
database/sql: document that drivers may not return right after cancel
by Daniel Theophanes
· 8 years ago
ae9712c
database/sql: ensure Commit and Rollback return ErrTxDone
by Daniel Theophanes
· 8 years ago
e5e0562
database/sql: document expectations for named parameters
by Daniel Theophanes
· 8 years ago
2a64ebf
database/sql: deflake query cancel tests
by Daniel Theophanes
· 8 years ago
2b1abf7
database/sql: rename NamedParam to NamedArg and Param to Named
by Daniel Theophanes
· 8 years ago
0d163ce
database/sql: do not bypass the driver locks with Context methods
by Daniel Theophanes
· 8 years ago
f7b2f58
database/sql: force users of NamedParam to name struct literals fields
by Brad Fitzpatrick
· 8 years ago
e12f6ee
database/sql: fix TestPendingConnsAfterErr
by Daniel Theophanes
· 8 years ago
90b8a0c
database/sql: ensure all driver Stmt are closed once
by Daniel Theophanes
· 8 years ago
d7c0de9
database/sql: additional underlying types in DefaultValueConverter
by Scott Bell
· 9 years ago
49b77a8
database/sql: guard against driver.Stmt.Close panics
by Daniel Theophanes
· 8 years ago
b75b9e1
database/sql: clarify when statement in transaction is closed
by Ian Lance Taylor
· 8 years ago
a145890
all: don't call t.Fatal from a goroutine
by Ian Lance Taylor
· 8 years ago
92568bcb
database/sql: correctly spell constants
by Kevin Burke
· 8 years ago
4b90b7a
database/sql: add Pinger interface to driver Conn
by INADA Naoki
· 8 years ago
ce6aa2e
database/sql: add context helper methods and transaction types
by Daniel Theophanes
· 8 years ago
0fff67d
database/sql: fix possible context leak in test
by Alexander Döring
· 8 years ago
accf5cc
all: minor vet fixes
by Josh Bleecher Snyder
· 8 years ago
325c2aa
database/sql: update the conversion errors to be clearer
by Daniel Theophanes
· 8 years ago
692df21
database/sql: add missing unlock when context is expired
by Daniel Theophanes
· 8 years ago
2a85578
database/sql: support returning query database types
by Daniel Theophanes
· 8 years ago
0ce1d79
database/sql: accept nil pointers to Valuers implemented on value receivers
by Brad Fitzpatrick
· 8 years ago
707a833
database/sql: add option to use named parameter in query arguments
by Daniel Theophanes
· 8 years ago
86b2f296
database/sql: add support for multiple result sets
by Daniel Theophanes
· 8 years ago
fa49c39
database/sql: fixup remaining driver call to use context
by Daniel Theophanes
· 8 years ago
d2df849
database/sql: close Rows when context is cancelled
by Daniel Theophanes
· 8 years ago
e13df02
database/sql: add context methods
by Daniel Theophanes
· 9 years ago
8f9e2ab
database/sql: add doc comment for ErrTxDone
by Sam Whited
· 8 years ago
967fa42
database/sql: don't hang if the driver Exec method panics
by Ian Lance Taylor
· 9 years ago
733aefd
database/sql: deflake TestPendingConnsAfterErr and fix races, panics
by Brad Fitzpatrick
· 9 years ago
4e0cd1e
database/sql: clone data for named []byte types
by Kevin Burke
· 9 years ago
fdba5a7
all: delete dead non-test code
by Dominik Honnef
· 9 years ago
7162c4d
database/sql/driver: remove string exclusion
by Tamir Duberstein
· 9 years ago
b2cf571
all: delete dead test code
by Dominik Honnef
· 9 years ago
5fea2cc
all: single space after period.
by Brad Fitzpatrick
· 9 years ago
Next »