aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql
AgeCommit message (Expand)Author
2017-12-05database/sql: fix transaction leakkirk
2017-11-18database/sql: check for arg counts after eliminating argumentsDaniel Theophanes
2017-11-16database/sql: allow OpenConnector in a driver.Driver interfaceDaniel Theophanes
2017-11-16database/sql/driver: document that Execer, Queryer need not be implementedRuss Cox
2017-11-15database/sql: fix ctx.Done() == nil checkRuss Cox
2017-11-15database/sql/driver: rename ResetSessioner to SessionResetterRuss Cox
2017-11-14database/sql: do not leak the connectionResetter goroutineDaniel Theophanes
2017-11-04all: change github.com issue links to golang.orgLeigh McCulloch
2017-10-25database/sql: scan into *time.Time without reflectionDaniel Theophanes
2017-10-25database/sql: ensure all driver interfaces are called under single lockDaniel Theophanes
2017-10-24database/sql: add driver.ResetSessioner and add pool supportDaniel Theophanes
2017-10-24Revert "database/sql: add driver.ResetSessioner and add pool support"Russ Cox
2017-10-24database/sql: add driver.ResetSessioner and add pool supportDaniel Theophanes
2017-10-24database/sql: allow drivers to only implement Context variantsDaniel Theophanes
2017-10-18database/sql: fix example usage of OutTim Cooper
2017-10-17Revert "database/sql: prevent race in driver by locking dc in Next"Daniel Theophanes
2017-10-13database/sql: prevent race in driver by locking dc in NextDaniel Theophanes
2017-10-04database/sql: fix unreachable code in ColumnTypes testJulien Schmidt
2017-10-01database/sql: convertAssign string and time.Time into RawBytesCyrill Schumacher
2017-09-27database/sql: TestConversions add forgotten fields wantbytes and wantrawCyrill Schumacher
2017-09-24database/sql: update minor sql docsDaniel Theophanes
2017-09-23database/sql: add OpenDB to directly create a *DB without a DSN.James Lawrence
2017-09-08database/sql: fix Conn's doc typoDavor Kapsa
2017-08-23all: fix easy-to-miss typosAgniva De Sarker
2017-08-09database/sql: fail on unsupported options when context is un-cancellableMatt Dee
2017-07-18database/sql: fix wrong method name in descriptionAlexey Palazhchenko
2017-06-30database/sql: fix outdated package name in doc.txtMartin Garton
2017-06-13database/sql: ensure a Stmt from a Conn executes on the same driver.ConnDaniel Theophanes
2017-06-12database/sql: correct level of write to same var for race detectorDaniel Theophanes
2017-06-12database/sql: properly document QueryRowSarah Adams
2017-06-12database/sql: prevent race on Rows close with Tx RollbackDaniel Theophanes
2017-06-12Revert "database/sql: Use Tx.ctx in Tx non-context methods"Daniel Theophanes
2017-06-07database/sql: Use Tx.ctx in Tx non-context methodsBulat Gaifullin
2017-06-05database/sql: ensure Rows is closed when Tx closesDaniel Theophanes
2017-05-22database/sql: allow Stmt Query and Exec methods to open a new connDaniel Theophanes
2017-05-18database/sql: allow drivers to support custom arg typesDaniel Theophanes
2017-04-28database/sql: ensure releaseConn is defined before a possible closeDaniel Theophanes
2017-04-24database/sql: allow using a single connection from the databaseDaniel Theophanes
2017-04-12database/sql: correctly guard the query Row preventing early releaseDaniel Theophanes
2017-04-12database/sql: de-duplicate various methodsDaniel Theophanes
2017-03-31database/sql: support scanning into user defined string typesDaniel Theophanes
2017-03-08database/sql: fix spelling mistake in testsKevin Burke
2017-03-08database/sql: proper prepared statement support in transactionsSarah Adams
2017-02-13database/sql: convert test timeouts to explicit waits with checksDaniel Theophanes
2017-02-10database/sql: ensure driverConns are closed if not returned to poolDaniel Theophanes
2017-02-09database/sql: replace the expr of timeunit * N with N * timeunit in testMikio Hara
2017-02-09database/sql: fix nits in testMikio Hara
2017-02-09database/sql: do not exhaust connection pool on conn request timeoutDaniel Theophanes
2017-02-09database/sql: fix typoKevin Burke
2017-02-08database/sql: record the context error in Rows if canceledDaniel Theophanes