Adam Borocz
Adam Borocz
I had the same problem as well, and reading around a bit, it seems that Play has a complex classloader setup (8 different class loaders as of right now) when...
Changing this: ``` scala class CatDAO extends HasDatabaseConfig[JdbcProfile] { // ... } ``` to this: ``` scala class CatDAO extends HasDatabaseConfig[MyPostgresDriver] { // Use your custom driver instead of JdcbProfile...
Happy to help @tminglei - thanks for the great project!
Out of curiosity, what version of **Slick**, **slick-pg** and **Postgres JDBC** are you guys using? I'm only asking because I had pretty much the same problem a while back when...
Scratch that - it does seem to be broken still. Everything works fine with Postgres driver version `9.4-1201-jdbc41`, but using version `9.4-1202-*` and above results in an error. Here's an...