Accessing H2 database schema
问题 Im currently accessing an embedded H2 database in java using jOOQ to generate table classes etc. I can currently execute queries such as create.select().from(TEST).fetch() in my code, return results etc. However I cant query the information schema. I can access it ok using the H2 console, and creating a view for a given information_schema table works fine. My question is how should I be accessing the information_schema eg to perform a query such as SELECT * FROM INFORMATION_SCHEMA.TABLES from