sergsoft

Results 3 comments of sergsoft

Database: PostgreSql 9.3 ORMLite: 4.48

You can get list of all tables in "public" schema ``` sql select * from information_schema.tables where table_schema='public' ``` and get list of all sequences ``` sql select * from...

All of this queries should work on PostgreSql 8.2 and above. Even PgSql 7.4 has `information_schema.tables`, but has not `information_schema.sequences`. If you want to add support for PgSql from 7.4...