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) {        super(ctx, DATABASE_NAME, null, DATABASE_VERSION);
  14.    }
  15.    @Override
  16.    public void onCreate(SQLiteDatabase db) {        db.execSQL("CREATE TABLE " + TABLE_NAME + " (" + _ID
  17.             + " INTEGER PRIMARY KEY AUTOINCREMENT, " + TIME
  18.             + " INTEGER," + TITLE + " TEXT NOT NULL);");
  19.    }
  20.    @Override
  21.    public void onUpgrade(SQLiteDatabase db, int oldVersion,           int newVersion) {
  22.       db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
  23.       onCreate(db);
  24.    }
  25. }