Skip to content

Instantly share code, notes, and snippets.

@jezinka
Created September 13, 2017 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jezinka/dde26a28641c02f64146a2a24c8026f8 to your computer and use it in GitHub Desktop.
Save jezinka/dde26a28641c02f64146a2a24c8026f8 to your computer and use it in GitHub Desktop.
package com.projects.jezinka.myplaces
import android.content.Context
import android.database.sqlite.SQLiteDatabase
import android.database.sqlite.SQLiteOpenHelper
class MyPlacesDBHelper(context: Context) : SQLiteOpenHelper(context, DATABASE_NAME, null, DATABASE_VERSION) {
private val SQL_CREATE_ENTRIES =
"""CREATE TABLE ${MyPlacesContract.MyPlaceEntry.Companion.TABLE_NAME}
(${MyPlacesContract.MyPlaceEntry.Companion._ID} INTEGER PRIMARY KEY,
${MyPlacesContract.MyPlaceEntry.Companion.COLUMN_NAME_NOTE} TEXT,
${MyPlacesContract.MyPlaceEntry.Companion.COLUMN_NAME_LONGITUDE} TEXT,
${MyPlacesContract.MyPlaceEntry.Companion.COLUMN_NAME_LATITUDE} TEXT,
${MyPlacesContract.MyPlaceEntry.Companion.COLUMN_NAME_ORDER} INTEGER)"""
private val SQL_DELETE_ENTRIES = "DROP TABLE IF EXISTS ${MyPlacesContract.MyPlaceEntry.Companion.TABLE_NAME}"
override fun onCreate(db: SQLiteDatabase) {
db.execSQL(SQL_CREATE_ENTRIES)
}
override fun onOpen(db: SQLiteDatabase) {
super.onOpen(db)
db.execSQL("PRAGMA foreign_keys=ON")
}
override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {
// This database is only a cache for online data, so its upgrade policy is
// to simply to discard the data and start over
db.execSQL(SQL_DELETE_ENTRIES)
onCreate(db)
}
override fun onDowngrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {
onUpgrade(db, oldVersion, newVersion)
}
companion object {
// If you change the database schema, you must increment the database version.
val DATABASE_VERSION = 5
val DATABASE_NAME = "myPlaces.db"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment