Android Open Source - 2014-Droid-code D B Helper






From Project

Back to project page 2014-Droid-code.

License

The source code is released under:

GNU General Public License

If you think the Android project 2014-Droid-code listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package cs534.sample.dbAsyncTask;
//w  w  w .  j  av a  2  s .co  m
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;

/* 
 * DBHelper.class
 * is an SQLiteOpenHelper class
 * It is a simple implementation, if you use it use it as a base only you must add a lot of functionality
 * It creates a database and implements some of   the CRUD methods
 */
public class DBHelper extends SQLiteOpenHelper {
  /*
   * All of the fields here define the database This example is a simple class
   * so there are no other fields
   */

  // table name
  public static final String TABLE_GRADES = "grades";
  // database field names (COLUMN_
  public static final String COLUMN_ID = "_id";
  public static final String COLUMN_FIRST_NAME = "firstName";
  public static final String COLUMN_LAST_NAME = "secondName";
  public static final String COLUMN_CLASS = "class";
  public static final String COLUMN_GRADE = "grade";
  // file name
  private static final String DATABASE_NAME = "grades.db";
  // if the version number is increased the onUpdate() will be called
  private static final int DATABASE_VERSION = 1;

  // Database creation raw SQL statement
  private static final String DATABASE_CREATE = "create table "
      + TABLE_GRADES + "( " + COLUMN_ID
      + " integer primary key autoincrement, " + COLUMN_FIRST_NAME
      + " text not null, " + COLUMN_LAST_NAME + " text not null, "
      + COLUMN_CLASS + " text not null, " + COLUMN_GRADE
      + " integer not null" + ");";
  // static instance to share DBHelper
  private static DBHelper dbh = null;

  /**
   * Constructor
   * 
   * super.SQLiteOpenHelper: public SQLiteOpenHelper (Context context, String
   * name, SQLiteDatabase.CursorFactory factory, int version)
   * 
   * "Create a helper object to create, open, and/or manage a database."
   * Remember the database is not actually created or opened until one of
   * getWritableDatabase() or getReadableDatabase() is called.
   * 
   * constructor is private to prevent direct instantiation only getDBHelper()
   * can be called and it will create or return existing
   */
  private DBHelper(Context context) {
    super(context, DATABASE_NAME, null, DATABASE_VERSION);
  }

  /**
   * getDBHelper(Context)
   * 
   * The static factory method getDBHelper make's sure that only one database
   * helper exists across the app's lifecycle
   * 
   * A factory is an object for creating other objects. It is an abstraction
   * of a constructor.
   */
  public static DBHelper getDBHelper(Context context) {
    /*
     * Use the application context, which will ensure that you don't
     * accidentally leak an Activity's context. See this article for more
     * information: http://bit.ly/6LRzfx
     */
    if (dbh == null) {
      dbh = new DBHelper(context.getApplicationContext());
    }
    return dbh;
  } // getDBHelper()

  /*
   * onCreate()
   * 
   * SQLiteOpenHelper lifecycle method used when we first create the database,
   * in this case we create an empty database. You may want to populate your
   * database with data when you create it, this is app dependent.
   * 
   * @see
   * android.database.sqlite.SQLiteOpenHelper#onCreate(android.database.sqlite
   * .SQLiteDatabase)
   */
  @Override
  public void onCreate(SQLiteDatabase database) {
    /*
     * this is one of the few places where it is not an horrific idea to use
     * raw SQL.
     */
    database.execSQL(DATABASE_CREATE);
  }

  /*
   * onUpgrade()
   * 
   * SQLiteOpenHelper lifecycle method used when the database is upgraded to a
   * different version, this one is simple, it drops then recreates the
   * database, you loose all of the data This is not necessarily what you will
   * want to do :p
   * 
   * @see
   * android.database.sqlite.SQLiteOpenHelper#onUpgrade(android.database.sqlite
   * .SQLiteDatabase, int, int)
   */
  @Override
  public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    Log.w(DBHelper.class.getName(), "Upgrading database from version "
        + oldVersion + " to " + newVersion
        + ", which will destroy all old data");
    db.execSQL("DROP TABLE IF EXISTS " + TABLE_GRADES);
    onCreate(db);
  }

  /*
   * insertNewStudent()
   * 
   * CR*U*D Update
   * 
   * @param firstName student's given name
   * 
   * @param lastName student's family name
   * 
   * @param className name of the class for which the grade applies
   * 
   * @param grad integer value of the class grade (on 100)
   * 
   * @return the return code from the insert
   * 
   * Using ContentValues insert a record in the database
   */
  public long insertNewStudent(String firstName, String lastName,
      String className, int grade) {
    ContentValues cv = new ContentValues();
    cv.put(COLUMN_FIRST_NAME, firstName);
    cv.put(COLUMN_LAST_NAME, lastName);
    cv.put(COLUMN_CLASS, className);
    cv.put(COLUMN_GRADE, grade);

    long code = getWritableDatabase().insert(TABLE_GRADES, null, cv);
    return code;
  }

  /*
   * getGrades()
   * 
   * C*R*UD Retrieve
   * 
   * returns a Cursor of *all* database records
   */
  public Cursor getGrades() {
    return getWritableDatabase().query(TABLE_GRADES, null, null, null,
        null, null, null);
  }

  /*
   * deleteStudent()
   * 
   * CRU*D* Delete
   * 
   * @param id database id field
   */
  public void deleteStudent(int id) {
    getWritableDatabase().delete(TABLE_GRADES, COLUMN_ID + "=?",
        new String[] { String.valueOf(id) });
  }

  /*
   * get30()
   * 
   * C*R*UD Retrieve
   * 
   * method written to return the set of student records who's grade is
   * exactly 30 for demonstration purposes, not necessarily a useful method
   */
  public Cursor get30() {
    return getWritableDatabase().query(TABLE_GRADES, null,
        COLUMN_GRADE + "=?", new String[] { "30" }, null, null, null);
  }
}




Java Source Code List

ca.campbell.httpexample.HttpExample.java
ca.campbell.httpexamplepost.HttpsExamplePOST.java
ca.campbell.layoutprogrammatically.MainActivity.java
ca.campbell.networkcheckstatus.MainActivity.java
ca.campbell.optionsmenu.Activity2.java
ca.campbell.optionsmenu.Activity2.java
ca.campbell.optionsmenu.Activity3.java
ca.campbell.optionsmenu.MainActivity.java
ca.campbell.optionsmenu.MainActivity.java
ca.campbell.simplegridview.MainActivity.java
ca.campbell.week2_rw_views.Activity2.java
ca.campbell.week2_rw_views.MainActivity.java
com.androidbook.simpleasync.ChoiceActivity.java
com.androidbook.simpleasync.SimpleAsyncActivity.java
com.androidbook.simpleasync.SimpleNoBGThread.java
com.androidbook.simpleasync.SimpleThreadActivity.java
com.cookbook.internet.search.GoogleSearch.java
com.introtoandroid.simplefragments.FieldNoteListFragment.java
com.introtoandroid.simplefragments.FieldNoteViewActivity.java
com.introtoandroid.simplefragments.FieldNoteWebViewFragment.java
com.introtoandroid.simplefragments.SimpleFragmentsActivity.java
com.introtoandroid.simplelayout.FrameLayoutActivity.java
com.introtoandroid.simplelayout.GridLayoutActivity.java
com.introtoandroid.simplelayout.LinearLayoutActivity.java
com.introtoandroid.simplelayout.MenuActivity.java
com.introtoandroid.simplelayout.MultipleLayoutActivity.java
com.introtoandroid.simplelayout.RelativeLayoutActivity.java
com.introtoandroid.simplelayout.SimpleLayoutActivity.java
com.introtoandroid.simplelayout.TableLayoutActivity.java
com.introtoandroid.viewsamples.ButtonsActivity.java
com.introtoandroid.viewsamples.ContainersActivity.java
com.introtoandroid.viewsamples.EventsActivity.java
com.introtoandroid.viewsamples.FormsActivity.java
com.introtoandroid.viewsamples.IndicatorsActivity.java
com.introtoandroid.viewsamples.MenuActivity.java
com.introtoandroid.viewsamples.PickersActivity.java
com.introtoandroid.viewsamples.TextDisplayActivity.java
com.introtoandroid.viewsamples.TextInputActivity.java
com.introtoandroid.viewsamples.ViewSampleActivity.java
cs518.sample.activityLifecycle.Activity2.java
cs518.sample.activityLifecycle.MyActivityLifeCycleActivity.java
cs518.sample.database.AddStudent.java
cs518.sample.database.DBHelper.java
cs518.sample.database.DatabaseActivity.java
cs518.sample.database.Thirty.java
cs518.sample.dbcursoradapter.AddStudent.java
cs518.sample.dbcursoradapter.DBHelper.java
cs518.sample.dbcursoradapter.DatabaseActivity.java
cs518.sample.dbcursoradapter.Thirty.java
cs518.sample.localisation.MainActivity.java
cs518.sample.multiactivity.Activity1.java
cs518.sample.multiactivity.Activity2.java
cs518.sample.multiactivity.Activity3.java
cs518.sample.multiactivity.Activity4.java
cs518.sample.multiactivity.Activity5.java
cs518.sample.multiactivity.Activity6.java
cs518.sample.multiactivity.Constants.java
cs518.sample.usecalendarcontentprovider.MainActivity.java
cs518.sample.usecontactcontentprovider.MainActivity.java
cs518.sample.usecontactcontentprovidercursorloader2.MainActivity.java
cs518.sample.usemediastorecontentprovider.MainActivity.java
cs518.samples.imageswap.MainActivity.java
cs518.samples.sharedpreferences.MainActivity.java
cs534.sample.dbAsyncTask.AddStudent.java
cs534.sample.dbAsyncTask.DBHelper.java
cs534.sample.dbAsyncTask.DatabaseActivity.java
cs534.sample.dbAsyncTask.Thirty.java
cs534.sample.implicitintents.MainActivity.java
cs534.sample.multithread.MultiThread.java
cs534.sample.simplelistview.SimpleLV.java
cs534.samples.simplestlv.MainActivity.java