summaryrefslogtreecommitdiff
path: root/src/database/sql
Commit message (Expand)AuthorAgeFilesLines
* database/sql: fix wrong method name in descriptionAlexey Palazhchenko2017-07-181-1/+1
* database/sql: fix outdated package name in doc.txtMartin Garton2017-06-301-1/+1
* database/sql: ensure a Stmt from a Conn executes on the same driver.ConnDaniel Theophanes2017-06-132-94/+154
* database/sql: correct level of write to same var for race detectorDaniel Theophanes2017-06-122-34/+51
* database/sql: properly document QueryRowSarah Adams2017-06-121-0/+15
* database/sql: prevent race on Rows close with Tx RollbackDaniel Theophanes2017-06-123-12/+85
* Revert "database/sql: Use Tx.ctx in Tx non-context methods"Daniel Theophanes2017-06-122-34/+5
* database/sql: Use Tx.ctx in Tx non-context methodsBulat Gaifullin2017-06-072-5/+34
* database/sql: ensure Rows is closed when Tx closesDaniel Theophanes2017-06-052-13/+56
* database/sql: allow Stmt Query and Exec methods to open a new connDaniel Theophanes2017-05-222-7/+54
* database/sql: allow drivers to support custom arg typesDaniel Theophanes2017-05-186-90/+360
* database/sql: ensure releaseConn is defined before a possible closeDaniel Theophanes2017-04-282-1/+46
* database/sql: allow using a single connection from the databaseDaniel Theophanes2017-04-242-5/+283
* database/sql: correctly guard the query Row preventing early releaseDaniel Theophanes2017-04-122-6/+13
* database/sql: de-duplicate various methodsDaniel Theophanes2017-04-121-50/+41
* database/sql: support scanning into user defined string typesDaniel Theophanes2017-03-313-3/+42
* database/sql: fix spelling mistake in testsKevin Burke2017-03-081-1/+1
* database/sql: proper prepared statement support in transactionsSarah Adams2017-03-082-31/+265
* database/sql: convert test timeouts to explicit waits with checksDaniel Theophanes2017-02-131-20/+37
* database/sql: ensure driverConns are closed if not returned to poolDaniel Theophanes2017-02-101-2/+2
* database/sql: replace the expr of timeunit * N with N * timeunit in testMikio Hara2017-02-091-7/+7
* database/sql: fix nits in testMikio Hara2017-02-091-3/+5
* database/sql: do not exhaust connection pool on conn request timeoutDaniel Theophanes2017-02-092-13/+93
* database/sql: fix typoKevin Burke2017-02-091-1/+1
* database/sql: record the context error in Rows if canceledDaniel Theophanes2017-02-083-66/+100
* database/sql: fix spelling mistakeKevin Burke2017-02-012-2/+2
* database/sql: fix race when canceling queries immediatelyDaniel Theophanes2017-01-262-35/+147
* database/sql: let tests wait for db pool to come to expected stateDaniel Theophanes2017-01-251-16/+16
* all: fix misspellingsshawnps2017-01-071-1/+1
* database/sql: fix typo and wordingKevin Burke2017-01-021-6/+6
* database/sql: prevent Tx.rollback from racing Tx.closeDaniel Theophanes2017-01-022-5/+52
* database/sql: do not store Tx options in ContextDaniel Theophanes2016-12-145-77/+56
* database/sql: use complete sentences in new docsBrad Fitzpatrick2016-12-091-6/+13
* database/sql: document that drivers may not return right after cancelDaniel Theophanes2016-12-091-1/+4
* database/sql: ensure Commit and Rollback return ErrTxDoneDaniel Theophanes2016-12-012-3/+34
* database/sql: document expectations for named parametersDaniel Theophanes2016-12-015-9/+35
* database/sql: deflake query cancel testsDaniel Theophanes2016-11-302-5/+26
* database/sql: rename NamedParam to NamedArg and Param to NamedDaniel Theophanes2016-11-303-12/+23
* database/sql: do not bypass the driver locks with Context methodsDaniel Theophanes2016-11-295-217/+242
* database/sql: force users of NamedParam to name struct literals fieldsBrad Fitzpatrick2016-11-241-0/+2
* database/sql: fix TestPendingConnsAfterErrDaniel Theophanes2016-11-221-9/+31
* database/sql: ensure all driver Stmt are closed onceDaniel Theophanes2016-11-172-77/+88
* database/sql: additional underlying types in DefaultValueConverterScott Bell2016-11-172-3/+29
* database/sql: guard against driver.Stmt.Close panicsDaniel Theophanes2016-11-161-11/+13
* database/sql: clarify when statement in transaction is closedIan Lance Taylor2016-11-161-6/+6
* all: don't call t.Fatal from a goroutineIan Lance Taylor2016-11-151-1/+2
* database/sql: correctly spell constantsKevin Burke2016-10-311-3/+5
* database/sql: add Pinger interface to driver ConnINADA Naoki2016-10-313-6/+73
* database/sql: add context helper methods and transaction typesDaniel Theophanes2016-10-304-8/+94
* database/sql: fix possible context leak in testAlexander Döring2016-10-241-0/+1