From 05d9b06ddcdafe55cc24f2e1ad726ac334f2486a Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Thu, 18 Jul 2019 12:25:09 -0700 Subject: [PATCH] Note Connection Pooling stuff is coming in 1.0.3 --- doc/getting-started.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/getting-started.md b/doc/getting-started.md index 3dddea6..b41ecc2 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -18,7 +18,7 @@ for `deps.edn` or: ``` for `project.clj` or `build.boot`. -In addition, you will need to add dependencies for the JDBC drivers you wish to use for whatever databases you are using. You can see the drivers and versions that `next.jdbc` is tested against in [the project's `deps.edn` file](https://github.com/seancorfield/next-jdbc/blob/master/deps.edn#L6-L14), but many other JDBC drivers for other databases should also work (e.g., Oracle, Red Shift). +In addition, you will need to add dependencies for the JDBC drivers you wish to use for whatever databases you are using. You can see the drivers and versions that `next.jdbc` is tested against in [the project's `deps.edn` file](https://github.com/seancorfield/next-jdbc/blob/master/deps.edn#L11-L19), but many other JDBC drivers for other databases should also work (e.g., Oracle, Red Shift). ## An Example REPL Session @@ -147,6 +147,8 @@ If `with-transaction` is given a datasource, it will create and close the connec ## Connection Pooling +(Coming soon in version 1.0.3!) + `next.jdbc` makes it easy to use either HikariCP or c3p0 for connection pooling. First, you need to add the connection pooling library as a dependency, e.g.,