summaryrefslogtreecommitdiff
path: root/src/database/sql/sql_test.go
Commit message (Expand)AuthorAgeFilesLines
* database/sql: ensure Commit and Rollback return ErrTxDoneDaniel Theophanes2016-12-011-0/+31
* database/sql: document expectations for named parametersDaniel Theophanes2016-12-011-2/+2
* database/sql: deflake query cancel testsDaniel Theophanes2016-11-301-4/+15
* database/sql: rename NamedParam to NamedArg and Param to NamedDaniel Theophanes2016-11-301-3/+3
* database/sql: do not bypass the driver locks with Context methodsDaniel Theophanes2016-11-291-4/+76
* database/sql: fix TestPendingConnsAfterErrDaniel Theophanes2016-11-221-9/+31
* database/sql: ensure all driver Stmt are closed onceDaniel Theophanes2016-11-171-1/+1
* all: don't call t.Fatal from a goroutineIan Lance Taylor2016-11-151-1/+2
* database/sql: add Pinger interface to driver ConnINADA Naoki2016-10-311-0/+44
* database/sql: fix possible context leak in testAlexander Döring2016-10-241-0/+1
* database/sql: update the conversion errors to be clearerDaniel Theophanes2016-10-211-2/+2
* database/sql: support returning query database typesDaniel Theophanes2016-10-181-0/+50
* database/sql: add option to use named parameter in query argumentsDaniel Theophanes2016-10-171-0/+47
* database/sql: add support for multiple result setsDaniel Theophanes2016-10-151-0/+76
* database/sql: close Rows when context is cancelledDaniel Theophanes2016-09-291-0/+58
* database/sql: add context methodsDaniel Theophanes2016-09-271-3/+6
* database/sql: don't hang if the driver Exec method panicsIan Lance Taylor2016-08-291-0/+47
* database/sql: deflake TestPendingConnsAfterErr and fix races, panicsBrad Fitzpatrick2016-06-281-2/+4
* all: single space after period.Brad Fitzpatrick2016-03-021-1/+1
* all: fix typos and spellingMartin Möhrmann2016-02-241-1/+1
* database/sql: guard against panics in driver.Stmt implementationRuss Cox2016-01-081-0/+40
* database/sql: Add DB.SetConnMaxLifetimeINADA Naoki2015-12-021-30/+101
* database/sql: avoid deadlock waiting for connectionsChris Hines2015-10-161-0/+61
* database/sql: fix case where Stmt.Close discards errorIan Gudger2015-10-021-0/+38
* database/sql: close bad connections in commit or rollback:Chris Hines2015-09-031-0/+71
* all: link to https instead of httpBrad Fitzpatrick2015-07-111-1/+1
* database/sql: refer correct issue in TestErrBadConnReconnect commentAlex Brainman2015-06-061-1/+1
* database/sql: Retry with a fresh connection after maxBadConnRetriesMarko Tiikkaja2015-04-081-3/+76
* database/sql: close connection if db.numOpen > db.maxOpenJiong Du2015-04-071-0/+51
* database/sql: provide stats on number of open connections to the database.Andrei Korzhevskii2015-04-011-0/+20
* database/sql: reduce lock contention in Stmt.connStmtINADA Naoki2015-01-241-50/+28
* database/sql: Close per-tx prepared statements when the associated tx endsMarko Tiikkaja2014-09-221-0/+31
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+1956