It's 2021

This commit is contained in:
Sean Corfield 2021-01-29 16:13:05 -08:00
parent 268a4b9193
commit dc240652fc
32 changed files with 32 additions and 32 deletions

View file

@ -82,6 +82,6 @@ In addition, convenience functions -- "syntactic sugar" -- are provided to inser
## License ## License
Copyright © 2018-2020 Sean Corfield Copyright © 2018-2021 Sean Corfield
Distributed under the Eclipse Public License version 1.0. Distributed under the Eclipse Public License version 1.0.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc (ns next.jdbc
"The public API of the next generation java.jdbc library. "The public API of the next generation java.jdbc library.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc.connection (ns next.jdbc.connection
"Standard implementations of `get-datasource` and `get-connection`. "Standard implementations of `get-datasource` and `get-connection`.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2020 Sean Corfield, all rights reserved ;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
(ns next.jdbc.datafy (ns next.jdbc.datafy
"This namespace provides datafication of several JDBC object types, "This namespace provides datafication of several JDBC object types,

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.date-time (ns next.jdbc.date-time
"Optional namespace that extends `next.jdbc.prepare/SettableParameter` "Optional namespace that extends `next.jdbc.prepare/SettableParameter`

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.optional (ns next.jdbc.optional
"Builders that treat NULL SQL values as 'optional' and omit the "Builders that treat NULL SQL values as 'optional' and omit the

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc.prepare (ns next.jdbc.prepare
"Mostly an implementation namespace for how `PreparedStatement` objects are "Mostly an implementation namespace for how `PreparedStatement` objects are

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc.protocols (ns next.jdbc.protocols
"This is the extensible core of the next generation java.jdbc library. "This is the extensible core of the next generation java.jdbc library.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.quoted (ns next.jdbc.quoted
"Provides functions for use with the `:table-fn` and `:column-fn` options "Provides functions for use with the `:table-fn` and `:column-fn` options

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc.result-set (ns next.jdbc.result-set
"An implementation of `ResultSet` handling functions. "An implementation of `ResultSet` handling functions.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.specs (ns next.jdbc.specs
"Specs for the core API of next.jdbc. "Specs for the core API of next.jdbc.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.sql (ns next.jdbc.sql
"Some utility functions that make common operations easier by "Some utility functions that make common operations easier by

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.sql.builder (ns next.jdbc.sql.builder
"Some utility functions for building SQL strings. "Some utility functions for building SQL strings.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc.transaction (ns next.jdbc.transaction
"Implementation of SQL transaction logic. "Implementation of SQL transaction logic.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2018-2020 Sean Corfield, all rights reserved ;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
(ns next.jdbc.types (ns next.jdbc.types
"Provides convenience functions for wrapping values you pass into SQL "Provides convenience functions for wrapping values you pass into SQL

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.connection-test (ns next.jdbc.connection-test
"Tests for the main hash map spec to JDBC URL logic and the get-datasource "Tests for the main hash map spec to JDBC URL logic and the get-datasource

View file

@ -1,4 +1,4 @@
;; copyright (c) 2020 Sean Corfield, all rights reserved ;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
(ns next.jdbc.datafy-test (ns next.jdbc.datafy-test
"Tests for the datafy extensions over JDBC types." "Tests for the datafy extensions over JDBC types."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.date-time-test (ns next.jdbc.date-time-test
"Date/time parameter auto-conversion tests. "Date/time parameter auto-conversion tests.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2020 Sean Corfield, all rights reserved ;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
(ns next.jdbc.default-options-test (ns next.jdbc.default-options-test
"Stub test namespace for default options. Nothing can really be tested "Stub test namespace for default options. Nothing can really be tested

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.optional-test (ns next.jdbc.optional-test
"Test namespace for the optional builder functions." "Test namespace for the optional builder functions."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2020 Sean Corfield, all rights reserved ;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
(ns next.jdbc.plan-test (ns next.jdbc.plan-test
"Tests for the plan helpers." "Tests for the plan helpers."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.prepare-test (ns next.jdbc.prepare-test
"Stub test namespace for PreparedStatement creation etc. "Stub test namespace for PreparedStatement creation etc.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.protocols-test (ns next.jdbc.protocols-test
"Stub test namespace for low-level protocols. Nothing can really be tested "Stub test namespace for low-level protocols. Nothing can really be tested

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.quoted-test (ns next.jdbc.quoted-test
"Basic tests for quoting strategies. These are also tested indirectly "Basic tests for quoting strategies. These are also tested indirectly

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.result-set-test (ns next.jdbc.result-set-test
"Test namespace for the result set functions. "Test namespace for the result set functions.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.specs-test (ns next.jdbc.specs-test
"Stub test namespace for the specs. "Stub test namespace for the specs.

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.sql.builder-test (ns next.jdbc.sql.builder-test
"Tests for the SQL string building functions in next.jdbc.sql.builder." "Tests for the SQL string building functions in next.jdbc.sql.builder."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.sql-test (ns next.jdbc.sql-test
"Tests for the syntactic sugar SQL functions." "Tests for the syntactic sugar SQL functions."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.test-fixtures (ns next.jdbc.test-fixtures
"Multi-database testing fixtures." "Multi-database testing fixtures."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc.transaction-test (ns next.jdbc.transaction-test
"Stub test namespace for transaction handling." "Stub test namespace for transaction handling."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2020 Sean Corfield, all rights reserved ;; copyright (c) 2020-2021 Sean Corfield, all rights reserved
(ns next.jdbc.types-test (ns next.jdbc.types-test
"Some tests for the type-assist functions." "Some tests for the type-assist functions."

View file

@ -1,4 +1,4 @@
;; copyright (c) 2019-2020 Sean Corfield, all rights reserved ;; copyright (c) 2019-2021 Sean Corfield, all rights reserved
(ns next.jdbc-test (ns next.jdbc-test
"Basic tests for the primary API of `next.jdbc`." "Basic tests for the primary API of `next.jdbc`."