Hello, I want to configure the same kind of connection properties you can see in the Java example such as Class.forName("org.relique.jdbc.csv.CsvDriver"); Properties props = new Properties(); // Define column names and column data types here. props.put("suppressHeaders", "true"); props.put("headerline", "ID,ANGLE,MEASUREDATE"); props.put("columnTypes", "Int,Double,Date"); Connection conn = DriverManager.getConnection("jdbc:relique:csv:" + args[0], props); but configure them in a JNDI resource? (for...