Back to project page sqlite-provider.
The source code is released under:
Apache License
If you think the Android project sqlite-provider listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package novoda.lib.sqliteprovider.sqlite; //from w w w .ja v a 2s . c o m import java.util.List; import java.util.Map; public interface IDatabaseMetaInfo { public enum SQLiteType { NULL, INTEGER, REAL, TEXT, BLOB, NUMERIC } Map<String, SQLiteType> getColumns(String table); List<String> getTables(); List<String> getForeignTables(String table); List<String> getUniqueConstrains(String table); Map<String, String> getProjectionMap(String parent, String... foreignTables); int getVersion(); void setVersion(int version); }