1. 1091b50 database/sql: remove duplicate validation by Tamir Duberstein · 7 years ago
  2. 8da7706 database/sql: include SQL column name in Scan() error message by HaraldNordgren · 7 years ago
  3. 651ddbd database/sql: buffers provided to Rows.Next should not be modified by drivers by Daniel Theophanes · 7 years ago
  4. 1b69d19 database/sql: fix TestConversions when count > 1 by Daniel Theophanes · 7 years ago
  5. 78583a1 database/sql: fix nil pointer use within withLock by Daniel Theophanes · 7 years ago
  6. 3aeb395 database/sql/driver: update Value doc, can be driver supported type by Daniel Theophanes · 7 years ago
  7. b36b12b database/sql/driver: explain Driver vs DriverContext vs Connector by Russ Cox · 7 years ago
  8. bcf964d database/sql: fix transaction leak by kirk · 7 years ago
  9. 262141a database/sql: check for arg counts after eliminating arguments by Daniel Theophanes · 7 years ago
  10. b44b2fe database/sql: allow OpenConnector in a driver.Driver interface by Daniel Theophanes · 7 years ago
  11. b9ebc67 database/sql/driver: document that Execer, Queryer need not be implemented by Russ Cox · 7 years ago
  12. b9dca1b database/sql: fix ctx.Done() == nil check by Russ Cox · 7 years ago
  13. 442d15a database/sql/driver: rename ResetSessioner to SessionResetter by Russ Cox · 7 years ago
  14. f7df55d database/sql: do not leak the connectionResetter goroutine by Daniel Theophanes · 7 years ago
  15. 8db19a4 all: change github.com issue links to golang.org by Leigh McCulloch · 7 years ago
  16. ff4ee88 database/sql: scan into *time.Time without reflection by Daniel Theophanes · 7 years ago
  17. 1126d14 database/sql: ensure all driver interfaces are called under single lock by Daniel Theophanes · 7 years ago
  18. 6a223b8 database/sql: add driver.ResetSessioner and add pool support by Daniel Theophanes · 7 years ago
  19. 3b9d947 Revert "database/sql: add driver.ResetSessioner and add pool support" by Russ Cox · 7 years ago
  20. 2620ac3 database/sql: add driver.ResetSessioner and add pool support by Daniel Theophanes · 7 years ago
  21. 5327148 database/sql: allow drivers to only implement Context variants by Daniel Theophanes · 7 years ago
  22. a9afa4e database/sql: fix example usage of Out by Tim Cooper · 7 years ago
  23. 292366e Revert "database/sql: prevent race in driver by locking dc in Next" by Daniel Theophanes · 7 years ago
  24. 897080d database/sql: prevent race in driver by locking dc in Next by Daniel Theophanes · 8 years ago
  25. 678ce97 database/sql: fix unreachable code in ColumnTypes test by Julien Schmidt · 7 years ago
  26. 3487c4e database/sql: convertAssign string and time.Time into RawBytes by Cyrill Schumacher · 7 years ago
  27. 70bcd2c database/sql: TestConversions add forgotten fields wantbytes and wantraw by Cyrill Schumacher · 7 years ago
  28. 14a1d93 database/sql: update minor sql docs by Daniel Theophanes · 7 years ago
  29. e6358c7 database/sql: add OpenDB to directly create a *DB without a DSN. by James Lawrence · 8 years ago
  30. e16dc7d database/sql: fix Conn's doc typo by Davor Kapsa · 8 years ago
  31. ea5e3bd all: fix easy-to-miss typos by Agniva De Sarker · 8 years ago
  32. bd08803 database/sql: fail on unsupported options when context is un-cancellable by Matt Dee · 8 years ago
  33. e9b9dfe database/sql: fix wrong method name in description by Alexey Palazhchenko · 8 years ago
  34. 445652f database/sql: fix outdated package name in doc.txt by Martin Garton · 8 years ago
  35. cd24a8a database/sql: ensure a Stmt from a Conn executes on the same driver.Conn by Daniel Theophanes · 8 years ago
  36. 5c37397 database/sql: correct level of write to same var for race detector by Daniel Theophanes · 8 years ago
  37. 3bcdbe5 database/sql: properly document QueryRow by Sarah Adams · 8 years ago
  38. b0d592c database/sql: prevent race on Rows close with Tx Rollback by Daniel Theophanes · 8 years ago
  39. 3820191 Revert "database/sql: Use Tx.ctx in Tx non-context methods" by Daniel Theophanes · 8 years ago
  40. ef0f7fb database/sql: Use Tx.ctx in Tx non-context methods by Bulat Gaifullin · 8 years ago
  41. 729685c database/sql: ensure Rows is closed when Tx closes by Daniel Theophanes · 8 years ago
  42. 1865a56 database/sql: allow Stmt Query and Exec methods to open a new conn by Daniel Theophanes · 8 years ago
  43. a9bf3b2 database/sql: allow drivers to support custom arg types by Daniel Theophanes · 8 years ago
  44. 2133d63 database/sql: ensure releaseConn is defined before a possible close by Daniel Theophanes · 8 years ago
  45. d234f9a database/sql: allow using a single connection from the database by Daniel Theophanes · 8 years ago
  46. dec95d8 database/sql: correctly guard the query Row preventing early release by Daniel Theophanes · 8 years ago
  47. ab0e901 database/sql: de-duplicate various methods by Daniel Theophanes · 8 years ago
  48. 5a45a15 database/sql: support scanning into user defined string types by Daniel Theophanes · 8 years ago
  49. 6fbedc1 database/sql: fix spelling mistake in tests by Kevin Burke · 8 years ago
  50. 82e1732 database/sql: proper prepared statement support in transactions by Sarah Adams · 8 years ago
  51. 50ab37d database/sql: convert test timeouts to explicit waits with checks by Daniel Theophanes · 8 years ago
  52. a335c34 database/sql: ensure driverConns are closed if not returned to pool by Daniel Theophanes · 8 years ago
  53. 3a6842a database/sql: replace the expr of timeunit * N with N * timeunit in test by Mikio Hara · 8 years ago
  54. 5630d39 database/sql: fix nits in test by Mikio Hara · 8 years ago
  55. 4f6d4bb database/sql: do not exhaust connection pool on conn request timeout by Daniel Theophanes · 8 years ago
  56. c57d91e database/sql: fix typo by Kevin Burke · 8 years ago
  57. c026845 database/sql: record the context error in Rows if canceled by Daniel Theophanes · 8 years ago
  58. ec4062f database/sql: fix spelling mistake by Kevin Burke · 8 years ago
  59. 2b283ce database/sql: fix race when canceling queries immediately by Daniel Theophanes · 8 years ago
  60. 165cfbc database/sql: let tests wait for db pool to come to expected state by Daniel Theophanes · 8 years ago
  61. 067bab0 all: fix misspellings by shawnps · 8 years ago
  62. af7bc07 database/sql: fix typo and wording by Kevin Burke · 8 years ago
  63. 9def857 database/sql: prevent Tx.rollback from racing Tx.close by Daniel Theophanes · 8 years ago
  64. d0501f1 database/sql: do not store Tx options in Context by Daniel Theophanes · 8 years ago
  65. 454c234 database/sql: use complete sentences in new docs by Brad Fitzpatrick · 8 years ago
  66. e12ce1e database/sql: document that drivers may not return right after cancel by Daniel Theophanes · 8 years ago
  67. ae9712c database/sql: ensure Commit and Rollback return ErrTxDone by Daniel Theophanes · 8 years ago
  68. e5e0562 database/sql: document expectations for named parameters by Daniel Theophanes · 8 years ago
  69. 2a64ebf database/sql: deflake query cancel tests by Daniel Theophanes · 8 years ago
  70. 2b1abf7 database/sql: rename NamedParam to NamedArg and Param to Named by Daniel Theophanes · 8 years ago
  71. 0d163ce database/sql: do not bypass the driver locks with Context methods by Daniel Theophanes · 8 years ago
  72. f7b2f58 database/sql: force users of NamedParam to name struct literals fields by Brad Fitzpatrick · 8 years ago
  73. e12f6ee database/sql: fix TestPendingConnsAfterErr by Daniel Theophanes · 8 years ago
  74. 90b8a0c database/sql: ensure all driver Stmt are closed once by Daniel Theophanes · 8 years ago
  75. d7c0de9 database/sql: additional underlying types in DefaultValueConverter by Scott Bell · 9 years ago
  76. 49b77a8 database/sql: guard against driver.Stmt.Close panics by Daniel Theophanes · 8 years ago
  77. b75b9e1 database/sql: clarify when statement in transaction is closed by Ian Lance Taylor · 8 years ago
  78. a145890 all: don't call t.Fatal from a goroutine by Ian Lance Taylor · 8 years ago
  79. 92568bcb database/sql: correctly spell constants by Kevin Burke · 8 years ago
  80. 4b90b7a database/sql: add Pinger interface to driver Conn by INADA Naoki · 8 years ago
  81. ce6aa2e database/sql: add context helper methods and transaction types by Daniel Theophanes · 8 years ago
  82. 0fff67d database/sql: fix possible context leak in test by Alexander Döring · 8 years ago
  83. accf5cc all: minor vet fixes by Josh Bleecher Snyder · 8 years ago
  84. 325c2aa database/sql: update the conversion errors to be clearer by Daniel Theophanes · 8 years ago
  85. 692df21 database/sql: add missing unlock when context is expired by Daniel Theophanes · 8 years ago
  86. 2a85578 database/sql: support returning query database types by Daniel Theophanes · 8 years ago
  87. 0ce1d79 database/sql: accept nil pointers to Valuers implemented on value receivers by Brad Fitzpatrick · 8 years ago
  88. 707a833 database/sql: add option to use named parameter in query arguments by Daniel Theophanes · 8 years ago
  89. 86b2f296 database/sql: add support for multiple result sets by Daniel Theophanes · 8 years ago
  90. fa49c39 database/sql: fixup remaining driver call to use context by Daniel Theophanes · 8 years ago
  91. d2df849 database/sql: close Rows when context is cancelled by Daniel Theophanes · 8 years ago
  92. e13df02 database/sql: add context methods by Daniel Theophanes · 9 years ago
  93. 8f9e2ab database/sql: add doc comment for ErrTxDone by Sam Whited · 8 years ago
  94. 967fa42 database/sql: don't hang if the driver Exec method panics by Ian Lance Taylor · 9 years ago
  95. 733aefd database/sql: deflake TestPendingConnsAfterErr and fix races, panics by Brad Fitzpatrick · 9 years ago
  96. 4e0cd1e database/sql: clone data for named []byte types by Kevin Burke · 9 years ago
  97. fdba5a7 all: delete dead non-test code by Dominik Honnef · 9 years ago
  98. 7162c4d database/sql/driver: remove string exclusion by Tamir Duberstein · 9 years ago
  99. b2cf571 all: delete dead test code by Dominik Honnef · 9 years ago
  100. 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago