EventsData.java
上传用户:xmjingguan
上传日期:2009-07-06
资源大小:2054k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. /***  * Excerpted from "Hello, Android!",  * published by The Pragmatic Bookshelf.  * Copyrights apply to this code. It may not be used to create training material,   * courses, books, articles, and the like. Contact us if you are in doubt.  * We make no guarantees that this code is fit for any purpose.   * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information. ***/ package org.example.events;
  2. import static android.provider.BaseColumns._ID;
  3. import static org.example.events.Constants.TABLE_NAME;
  4. import static org.example.events.Constants.TIME;
  5. import static org.example.events.Constants.TITLE;
  6. import android.content.Context;
  7. import android.database.sqlite.SQLiteDatabase;
  8. import android.database.sqlite.SQLiteOpenHelper;
  9. public class EventsData extends SQLiteOpenHelper {
  10.    private static final String DATABASE_NAME = "events.db";
  11.    private static final int DATABASE_VERSION = 1;
  12.    /** Create a helper object for the Events database */
  13.    public EventsData(Context ctx) {
  14.       super(ctx, DATABASE_NAME, null, DATABASE_VERSION);
  15.    }
  16.    @Override
  17.    public void onCreate(SQLiteDatabase db) {
  18.       db.execSQL("CREATE TABLE " + TABLE_NAME + " (" + _ID
  19.             + " INTEGER PRIMARY KEY AUTOINCREMENT, " + TIME
  20.             + " INTEGER," + TITLE + " TEXT NOT NULL);");
  21.    }
  22.    @Override
  23.    public void onUpgrade(SQLiteDatabase db, int oldVersion,
  24.          int newVersion) {
  25.       db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
  26.       onCreate(db);
  27.    }
  28. }