aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql/sql.go
AgeCommit message (Expand)Author
2017-05-23[release-branch.go1.8] database/sql: ensure releaseConn is defined before a p...Daniel Theophanes
2017-02-10[release-branch.go1.8] database/sql: ensure driverConns are closed if not ret...Daniel Theophanes
2017-02-10[release-branch.go1.8] database/sql: do not exhaust connection pool on conn r...Daniel Theophanes
2017-02-09[release-branch.go1.8] database/sql: record the context error in Rows if canc...Daniel Theophanes
2017-01-26database/sql: fix race when canceling queries immediatelyDaniel Theophanes
2017-01-07all: fix misspellingsshawnps
2017-01-02database/sql: prevent Tx.rollback from racing Tx.closeDaniel Theophanes
2016-12-14database/sql: do not store Tx options in ContextDaniel Theophanes
2016-12-09database/sql: use complete sentences in new docsBrad Fitzpatrick
2016-12-09database/sql: document that drivers may not return right after cancelDaniel Theophanes
2016-12-01database/sql: ensure Commit and Rollback return ErrTxDoneDaniel Theophanes
2016-12-01database/sql: document expectations for named parametersDaniel Theophanes
2016-11-30database/sql: rename NamedParam to NamedArg and Param to NamedDaniel Theophanes
2016-11-29database/sql: do not bypass the driver locks with Context methodsDaniel Theophanes
2016-11-24database/sql: force users of NamedParam to name struct literals fieldsBrad Fitzpatrick
2016-11-17database/sql: ensure all driver Stmt are closed onceDaniel Theophanes
2016-11-16database/sql: guard against driver.Stmt.Close panicsDaniel Theophanes
2016-11-16database/sql: clarify when statement in transaction is closedIan Lance Taylor
2016-10-31database/sql: correctly spell constantsKevin Burke
2016-10-31database/sql: add Pinger interface to driver ConnINADA Naoki
2016-10-30database/sql: add context helper methods and transaction typesDaniel Theophanes
2016-10-20database/sql: add missing unlock when context is expiredDaniel Theophanes
2016-10-18database/sql: support returning query database typesDaniel Theophanes
2016-10-17database/sql: add option to use named parameter in query argumentsDaniel Theophanes
2016-10-15database/sql: add support for multiple result setsDaniel Theophanes
2016-10-04database/sql: fixup remaining driver call to use contextDaniel Theophanes
2016-09-29database/sql: close Rows when context is cancelledDaniel Theophanes
2016-09-27database/sql: add context methodsDaniel Theophanes
2016-09-27database/sql: add doc comment for ErrTxDoneSam Whited
2016-08-29database/sql: don't hang if the driver Exec method panicsIan Lance Taylor
2016-06-28database/sql: deflake TestPendingConnsAfterErr and fix races, panicsBrad Fitzpatrick
2016-03-25all: delete dead non-test codeDominik Honnef
2016-03-02all: single space after period.Brad Fitzpatrick
2016-02-21all: use cannot instead of can notJosh Bleecher Snyder
2016-01-27database/sql: implement Scan of time.Time, document, clarify Scan error textBrad Fitzpatrick
2016-01-08database/sql: guard against panics in driver.Stmt implementationRuss Cox
2015-12-30database/sql: fix doc typosEvan Shaw
2015-12-02database/sql: Add DB.SetConnMaxLifetimeINADA Naoki
2015-10-23database/sql: use RWMutex for driver registrationNathan VanBenschoten
2015-10-16database/sql: avoid deadlock waiting for connectionsChris Hines
2015-10-02database/sql: fix case where Stmt.Close discards errorIan Gudger
2015-09-14database/sql: fix typoAndrew Gerrand
2015-09-03database/sql: close bad connections in commit or rollback:Chris Hines
2015-07-15database/sql: document closing requirements for StmtsRuss Cox
2015-07-11all: link to https instead of httpBrad Fitzpatrick
2015-06-30database/sql: make Register safe for concurrent useBrad Fitzpatrick
2015-04-08database/sql: Retry with a fresh connection after maxBadConnRetriesMarko Tiikkaja
2015-04-07database/sql: close connection if db.numOpen > db.maxOpenJiong Du
2015-04-01database/sql: provide stats on number of open connections to the database.Andrei Korzhevskii
2015-01-24database/sql: reduce lock contention in Stmt.connStmtINADA Naoki