summaryrefslogtreecommitdiff
path: root/src/database/sql
Commit message (Expand)AuthorAgeFilesLines
* 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
* all: minor vet fixesJosh Bleecher Snyder2016-10-241-1/+1
* database/sql: update the conversion errors to be clearerDaniel Theophanes2016-10-212-14/+23
* database/sql: add missing unlock when context is expiredDaniel Theophanes2016-10-201-0/+1
* database/sql: support returning query database typesDaniel Theophanes2016-10-184-11/+259
* database/sql: accept nil pointers to Valuers implemented on value receiversBrad Fitzpatrick2016-10-173-4/+131
* database/sql: add option to use named parameter in query argumentsDaniel Theophanes2016-10-176-39/+202
* database/sql: add support for multiple result setsDaniel Theophanes2016-10-155-87/+334
* database/sql: fixup remaining driver call to use contextDaniel Theophanes2016-10-041-2/+2
* database/sql: close Rows when context is cancelledDaniel Theophanes2016-09-293-8/+119
* database/sql: add context methodsDaniel Theophanes2016-09-274-98/+523
* database/sql: add doc comment for ErrTxDoneSam Whited2016-09-271-0/+2
* database/sql: don't hang if the driver Exec method panicsIan Lance Taylor2016-08-292-51/+112
* database/sql: deflake TestPendingConnsAfterErr and fix races, panicsBrad Fitzpatrick2016-06-282-2/+10
* database/sql: clone data for named []byte typesKevin Burke2016-04-302-1/+18
* all: delete dead non-test codeDominik Honnef2016-03-251-5/+0
* database/sql/driver: remove string exclusionTamir Duberstein2016-03-232-18/+7
* all: delete dead test codeDominik Honnef2016-03-211-7/+0
* all: single space after period.Brad Fitzpatrick2016-03-026-17/+17
* all: fix typos and spellingMartin Möhrmann2016-02-241-1/+1
* all: use cannot instead of can notJosh Bleecher Snyder2016-02-211-1/+1
* database/sql: implement Scan of time.Time, document, clarify Scan error textBrad Fitzpatrick2016-01-273-19/+98
* database/sql/driver: clarify DefaultParameterConverter docsBrad Fitzpatrick2016-01-131-4/+9
* database/sql: guard against panics in driver.Stmt implementationRuss Cox2016-01-083-6/+75
* database/sql: fix doc typosEvan Shaw2015-12-301-2/+2
* database/sql: Add DB.SetConnMaxLifetimeINADA Naoki2015-12-022-41/+219
* database/sql: use RWMutex for driver registrationNathan VanBenschoten2015-10-231-5/+5
* database/sql: avoid deadlock waiting for connectionsChris Hines2015-10-163-8/+97
* database/sql: fix conversions to and from user-defined typesGordon Klaus2015-10-062-14/+33
* database/sql: fix case where Stmt.Close discards errorIan Gudger2015-10-022-2/+40
* database/sql: fix typoAndrew Gerrand2015-09-141-1/+1
* database/sql: close bad connections in commit or rollback:Chris Hines2015-09-033-4/+87
* database/sql: document closing requirements for StmtsRuss Cox2015-07-151-1/+11
* all: link to https instead of httpBrad Fitzpatrick2015-07-112-4/+4
* database/sql: make Register safe for concurrent useBrad Fitzpatrick2015-06-301-1/+12