This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DataBaseHelper extends SQLiteOpenHelper{ | |
| //The Android's default system path of your application database. | |
| //replace com.binarybricks.shippingwithsqllite with you Application package nae | |
| //This should be same as which you used package section in your manifest | |
| private static String DB_PATH = "/data/data/com.binarybricks.shippingwithsqllite/databases/"; | |
| //replace this with name of your db file which you copied into asset folder | |
| private static String DB_NAME = "dexterology"; | |