java - Count tables in H2 Database with OrmLite -


is there way number of tables in h2 database when using ormlite?

i'm looking like:

mysql> show tables; 

for ormlite.

is there way number of tables in h2 database when using ormlite?

ormlite has pretty online manual. if have looked in index under "raw queries" have found following:

http://ormlite.com/docs/raw-queries

there lot of detail there can following using dao.queryraw(...) method.

genericrawresults<string[]> results = dao.queryraw("show tables;"); 

Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -