Results 106 comments of Steve Waldman

I get the same NPE with tut plugin v0.4.1. The error is dependent upon whether I have ``` fork := true ``` set in `build.sbt`. If I don't set `fork`...

So, I can't reproduce this. If you'll forgive my using a Scala REPL to check, I define c3p0.properties as ``` c3p0.extensions.timezone=HKT ``` then... ``` Welcome to Scala version 2.11.5 (Java...

i'm glad it worked out! are you using the extension value to initialize Connections in a ConnectionCustomizer?

[This example](https://github.com/swaldman/c3p0/blob/master/src/java/com/mchange/v2/c3p0/example/InitSqlConnectionCustomizer.java) might be a good one to work from. You just extend [AbstractConnectionCustomizer](http://www.mchange.com/projects/c3p0/apidocs/com/mchange/v2/c3p0/AbstractConnectionCustomizer.html), override the appropriate method (probably `onCheckOut(...)` or `onAcquire(...)`), and find the extension value with `extensionsForToken(...)`. Note...

First, sorry for the slow response. I dropped this somehow. What you want is certainly do-able, and I'll think about adding it. But it'll have to wait for the 0.9.6...

So, this is an odd one. c3p0 doesn't Proxy CLOBs. Somehow the CLOB that you've gotten has been wrapped behind a Java standard dynamic proxy. You'll need to figure out...

NewProxyConnection is a code-generated class, so you won't find it in the source code in the repository. (You can see how it gets generated [here](https://github.com/swaldman/c3p0/blob/master/src/java/com/mchange/v2/c3p0/codegen/JdbcProxyGenerator.java).) If you want to see...

(If you check your logs, c3p0 dumps at INFO its version when the first Connection pool you define is initialized. You might look there to see the effective version within...

It's very likely that the same source as the outdated c3p0 also provides an outdated version of its transitive dependency, `mchange-commons-java` (where `MConfig` should live). c3p0-0.9.5.2 declares version 0.2.11 of...

Be sure to download the latest [mchange-commons-java](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.mchange%22%20AND%20a%3A%22mchange-commons-java%22), and fill in the dependency in `build.properties`. This ant build does not automatically resolve dependencies.