Reputation: 2055
I have to create such a mechanism:
I know everything except that "How to get stream to "in-memory" database created via H2DB"?
And some explanations:
Upvotes: 2
Views: 1382
Reputation: 50147
You can create the SQL script from a database using org.h2.tools.Script.execute(String url, String user, String password, OutputStream out). This works even for in-memory databases.
You can use the so called 'in-memory file system'. To get the file as a stream, you would need to use the internal H2 file API however (org.h2.IOUtils.openFileInputStream).
Upvotes: 2
Reputation: 205875
H2 supports In-Memory Databases using the database URL jdbc:h2:mem:
.
Addendum: Once you connect to the database, you can submit queries using jdbc to obtain the desired data. DatabaseMetaData
may be useful for comprehensive access. The streaming format will depend on the intended target.
Upvotes: 0