I have this Java snippet, running inside a WildFly server backed by MariaDB:
var stmt = conn.prepareStatement("SELECT * FROM vehicles;");
ResultSet rs = stmt.executeQuery();
which gives me the following exception:
org.h2.jdbc.JdbcSQLException: Table "VEHICLES" not found; SQL statement:
SELECT * FROM vehicles; [42102-193]
So, apparentally, it decided to uppercase the table name, which I don't want. How can I turn it off?