...
The CSV JDBC driver for the JDBC connector differs a little bit from the other drivers in the way it should be configured to properly work.
As a reminder, the proper JDBC CSV driver to use is the following: https://github.com/jprante/jdbc-driver-csv
1. Database connection
Unlike the other drivers, it does not require a database host and/or port, a database name, a user and a password, even if, unfortunately, those parameters are mandatory for the JDBC connector. So you must set something for those parameters anyway, whatever you want BUT an empty string !
...