Open Badjangas opened 1 year ago
Hi @Badjangas,
issues should be opened here. Nevertheless, you should try to use ScalikeJDBC to make such a connection, since it's already included in the library: http://scalikejdbc.org/
Add the usual Postgres driver to your dependencies and then create a ConnectionPool
in your after()
Hi there 👋 I'm trying to connect to my organisation's db and perform a query after my scenario is run. Unfortunately I can't past my code here but essentially this is what I have:
scenario
after
hook that, naturally, is run after the completion of the scenario. I want to connect to the db inside thisafter
hook, here's an example belowHowever I always get this error message
In my gradle build script I have this dependency
io.quarkus:quarkus-jdbc-postgresql
, so I should have the driver. This leads me to conclude that quarkus doesn run to execute gatling (which makes sense) and therefore RIP driver :( do u know a way to do this? Thanks nonetheless