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 com.novoda.sqliteprovider.demo.simple.provider; //from w ww . j av a2 s . c o m import android.net.Uri; import novoda.lib.sqliteprovider.provider.SQLiteContentProviderImpl; public class FireworkProvider extends SQLiteContentProviderImpl { private static final String AUTHORITY = "content://com.novoda.demo.simple/"; private static final String TABLE_SHOP = "shop"; public static final String COL_SHOP_NAME = "name"; public static final String COL_SHOP_POSTCODE = "postcode"; public static final Uri SHOPS = Uri.parse(AUTHORITY).buildUpon().appendPath(TABLE_SHOP).build(); }