summaryrefslogtreecommitdiff
path: root/src/database/sql/sql.go
Commit message (Expand)AuthorAgeFilesLines
* database/sql: add NullInt16 and NullByteAriel Mashraki2021-05-041-0/+54
* all: fix spellingsNaman Gera2021-04-101-1/+1
* docs: clarify when APIs use context.Background.Matt T. Proud2021-03-111-0/+42
* database/sql: close driver.Connector if it implements io.CloserIvan Trubach2021-02-251-0/+6
* database/sql: fix typo in commentHein Khant Zaw2020-12-101-1/+1
* database/sql: fix tx stmt deadlock when rollbackTzu-Chiao Yeh2020-10-281-7/+7
* database/sql: fix comment on DB.stop()Ayzat Sadykov2020-10-271-1/+1
* database/sql: shortestIdleTimeLocked correct min comparisonShinnosuke Sawada2020-08-291-0/+7
* database/sql: make Rows.Scan properly wrap underlying errorsTim Möhlmann2020-08-141-1/+4
* database/sql: form a complete sentence in code commentKevin Burke2020-05-081-2/+3
* database/sql: de-flake TestTxCannotCommitAfterRollbackDaniel Theophanes2020-04-221-0/+7
* database/sql: count connections expired in foreground with MaxLifetimeClosedColin2020-04-221-2/+8
* database/sql: on Tx rollback, retain connection if driver can reset sessionDaniel Theophanes2020-04-201-7/+20
* database/sql: prevent Tx statement from committing after rollbackDaniel Theophanes2020-04-201-10/+30
* database/sql: check conn expiry when returning to pool, not when handing it outDaniel Theophanes2020-04-201-1/+12
* database/sql: add test for Conn.Validator interfaceDaniel Theophanes2020-03-291-2/+2
* database/sql: add method Err on sql.RowTim Möhlmann2020-03-191-0/+8
* database/sql: process all Session Resets synchronouslyDaniel Theophanes2020-03-171-72/+43
* database/sql: add SetConnMaxIdleTimeDaniel Theophanes2020-02-211-31/+94
* database/sql: preallocate list slice in Drivers()Julien Schmidt2019-09-301-1/+1
* all: fix typosAinar Garipov2019-09-081-1/+1
* database/sql: add Conn.Raw to expose the driver Conn safelyDaniel Theophanes2019-06-131-0/+35
* database/sql: add NullInt32Daniel Theophanes2019-04-261-0/+26
* all: s/cancelation/cancellation/Josh Bleecher Snyder2019-04-161-1/+1
* database/sql: add NullTimeDaniel Theophanes2019-04-051-0/+26
* database/sql: document Stmt lifetimeJustin Li2019-02-081-0/+7
* database/sql: fix logic for pulling a Conn from DBDaniel Theophanes2019-01-141-1/+1
* all: use "reports whether" consistently instead of "returns whether"Tobias Klauser2018-12-021-1/+1
* database/sql: add support for returning cursors to clientDaniel Theophanes2018-11-081-1/+7
* all: use "reports whether" consistently in the few places that didn'tBrad Fitzpatrick2018-11-021-1/+1
* database/sql: add description to String method of IsolationLevel struct.Vladimir Kovpak2018-11-021-0/+1
* database/sql: prefer to return Rows.lasterr rather then a static errorDaniel Theophanes2018-10-291-9/+19
* database/sql: remove commented debug printsUmang Parmar2018-10-171-2/+0
* database/sql: correctly report MaxIdleClosed statDaniel Theophanes2018-10-021-4/+6
* database/sql: fix Rows.Columns() documentationAlexey Palazhchenko2018-09-031-2/+1
* database/sql: fix driverStmt.Close() comment typoFrédéric Guillot2018-08-031-1/+1
* database/sql: update doc related to per-connection stateEugene Kalinin2018-06-061-2/+2
* database/sql: add note to Scanner that the database owns valuesDaniel Theophanes2018-05-111-0/+4
* database/sql: add additional Stats to DBStatsDaniel Theophanes2018-05-111-12/+55
* database/sql: check for nil connRequest.conn before useDaniel Theophanes2018-05-101-1/+1
* database/sql: make error prefixes consistentDaniel Theophanes2018-05-051-2/+2
* database/sql: trivial documentation fixesAlexey Palazhchenko2018-05-011-3/+3
* database/sql: remove a couple redundanciesdchenk2018-04-121-12/+2
* database/sql: return context errors from Rows.ScanEric Rykwalder2018-04-111-0/+5
* database/sql: clarify behavior of DB.CloseDaniel Theophanes2018-04-111-1/+3
* database/sql: check to see if ctx is cancelable before awaitDaniel Theophanes2018-03-271-0/+3
* database/sql: fix docs to correctly refer to time.RFC3339NanoAndrew Bonventre2018-03-261-1/+1
* database/sql: add more examplesKevin Burke2018-03-251-18/+1
* database/sql: fix typo in commentTobias Klauser2018-03-071-1/+1
* database/sql: add String method to IsolationLevelAlexey Palazhchenko2018-02-221-0/+26