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:
there lot of detail there can following using dao.queryraw(...)
method.
genericrawresults<string[]> results = dao.queryraw("show tables;");
Comments
Post a Comment