Reputation: 1
Since we know hsqldb is run above java, and we can embed hsqldb lib into our java application, can we accessed hsqldb catalogs (table, table row, etc) as standard Java application, without using JDBC?,
example :
if we need som data from SOME_TABLE we not use
"SELECT * FROM SOME_TABLE"
List dataSet = HSQLDB.getTable("SOME_TABLE").getRows();
Upvotes: 0
Views: 162
Reputation: 14520
probably yes, but...
to summarize: not sure what are your reasons to do it but it sounds like a really bad idea. if sql doesn't meet your needs maybe better check out for no-sql databases
Upvotes: 1