当前位置:  编程技术>移动开发

Android实现创建或升级数据库时执行语句

    来源: 互联网  发布时间:2014-10-26

    本文导语:  本文实例讲述了Android创建或升级数据库时执行的语句,如果是创建或升级数据库,请使用带List参数的构造方法,带SQL语句的构造方法将在数据库创建或升级时执行。 具体程序代码如下: import java.util.List; import android.content.C...

本文实例讲述了Android创建或升级数据库时执行的语句,如果是创建或升级数据库,请使用带List参数的构造方法,带SQL语句的构造方法将在数据库创建或升级时执行。

具体程序代码如下:

import java.util.List;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
public class SimpleSQLiteOpenHelper extends SQLiteOpenHelper {
 private static final int INIT_VERSION = 1;
 /**
 * 创建或升级数据库时执行的语句。
 */
 private List sqlStatementExed;
 /**
 * 如果是创建或升级数据库,请使用带List参数的构造方法。
 * 
 * @param context
 *      to use to open or create the database
 * @param name
 *      of the database file, or null for an in-memory database
 * @param factory
 *      to use for creating cursor objects, or null for the default
 * @param version
 *      number of the database (starting at 1); if the database is
 *      older, onUpgrade(SQLiteDatabase, int, int) will be used to
 *      upgrade the database; if the database is newer,
 *      onDowngrade(SQLiteDatabase, int, int) will be used to
 *      downgrade the database
 */
 public SimpleSQLiteOpenHelper(Context context, String name,
  CursorFactory factory, int version) {
 super(context, name, factory, version);
 sqlStatementExed = null;
 }
 /**
 * 带SQL语句的构造方法。此SQL语句将在数据库创建或升级时执行。
 * 
 * @param context
 *      to use to open or create the database
 * @param name
 *      of the database file, or null for an in-memory database
 * @param factory
 *      to use for creating cursor objects, or null for the default
 * @param version
 *      number of the database (starting at 1); if the database is
 *      older, onUpgrade(SQLiteDatabase, int, int) will be used to
 *      upgrade the database; if the database is newer,
 *      onDowngrade(SQLiteDatabase, int, int) will be used to
 *      downgrade the database
 * @param sqlStatementExed
 *      在数据库创建或升级的时候将执行的语句。
 */
 public SimpleSQLiteOpenHelper(Context context, String name,
  CursorFactory factory, int version, List sqlStatementExed) {
 super(context, name, factory, version);
 this.sqlStatementExed = sqlStatementExed;
 }
 /**
 * 如果是创建或升级数据库,请使用带List参数的构造方法。
 * @param context
 *      to use to open or create the database
 * @param name
 *      of the database file, or null for an in-memory database
 * @param version
 *      number of the database (starting at 1); if the database is
 *      older, onUpgrade(SQLiteDatabase, int, int) will be used to
 *      upgrade the database; if the database is newer,
 *      onDowngrade(SQLiteDatabase, int, int) will be used to
 *      downgrade the database
 */
 public SimpleSQLiteOpenHelper(Context context, String name, int version) {
 super(context, name, null, version);
 sqlStatementExed = null;
 }
 /**
 * 如果是创建或升级数据库,请使用带List参数的构造方法。
 * @param context
 *      to use to open or create the database
 * @param name
 *      of the database file, or null for an in-memory database
 */
 public SimpleSQLiteOpenHelper(Context context, String name) {
 super(context, name, null, INIT_VERSION);
 sqlStatementExed = null;
 }
 /**
 * 如果是创建或升级数据库,请使用带List参数的构造方法。
 * 
 * @param context
 *      to use to open or create the database
 * @param name
 *      of the database file, or null for an in-memory database
 * @param version
 *      number of the database (starting at 1); if the database is
 *      older, onUpgrade(SQLiteDatabase, int, int) will be used to
 *      upgrade the database; if the database is newer,
 *      onDowngrade(SQLiteDatabase, int, int) will be used to
 *      downgrade the database
 * @param sqlCreateStatement
 *      在创建或升级数据库时要执行的语句。
 */
 public SimpleSQLiteOpenHelper(Context context, String name, int version,
  List sqlCreateStatement) {
 super(context, name, null, version);
 this.sqlStatementExed = sqlCreateStatement;
 }
 /**
 * @param context
 * @param name
 * @param sqlCreateStatement
 *      在创建或升级数据库时要执行的语句。
 */
 public SimpleSQLiteOpenHelper(Context context, String name,
  List sqlCreateStatement) {
 super(context, name, null, INIT_VERSION);
 this.sqlStatementExed = sqlCreateStatement;
 }
 /*
 * (non-Javadoc)
 * @see
 * android.database.sqlite.SQLiteOpenHelper#onCreate(android.database.sqlite
 * .SQLiteDatabase)
 */
 @Override
 @Deprecated
 public void onCreate(SQLiteDatabase db) {
 exeSqlStatementExed(db);
 }
 /*
 * (non-Javadoc)
 * @see
 * android.database.sqlite.SQLiteOpenHelper#onUpgrade(android.database.sqlite
 * .SQLiteDatabase, int, int)
 */
 @Override
 @Deprecated
 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
 if (newVersion > oldVersion) {
  exeSqlStatementExed(db);
 }
 }
 /**
 * 初始化或升级数据库时执行的SQL语句。。
 */
 private void exeSqlStatementExed(SQLiteDatabase db) {
 if (sqlStatementExed != null) {
  for (String statement : sqlStatementExed) {
  db.execSQL(statement);
  }
 }
 }
}

希望本文所述方法对于大家进行Android程序开发能够起到一定的帮助作用。


    
 
 

您可能感兴趣的文章:

  • Android中的SQL查询语句LIKE绑定参数问题解决办法(sqlite数据库)
  • Android创建文件实现对文件监听示例
  • 解析Android应用启动后自动创建桌面快捷方式的实现方法
  • android教程之使用popupwindow创建菜单示例 iis7站长之家
  • 解析android创建快捷方式会启动两个应用的问题
  • android 为应用程序创建桌面快捷方式技巧分享
  • android教程之使用popupwindow创建菜单示例
  • Android的文本和输入之创建输入法教程
  • Android中使用IntentService创建后台服务实例
  • android使用handlerthread创建线程示例
  • Android 创建/验证/删除桌面快捷方式(已测试可用)
  • android创建数据库(SQLite)保存图片示例
  • android创建手势识别示例代码
  • Android创建服务之started service详细介绍
  • Android应用程序窗口(Activity)窗口对象(Window)创建指南
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • android开发教程之间隔执行程序(android计时器)
  • android下跑ubuntu下的可执行文件
  • Android加载对话框同时异步执行实现方法
  • android中ListView多次刷新重复执行getView的解决方法
  • Android执行shell命令详解
  • 申请Android Map 的API Key(v2)的最新申请方式(SHA1密钥)
  • Android瀑布流实例 android_waterfall
  • Android开发需要的几点注意事项总结
  • Android系统自带样式 (android:theme)
  • android 4.0 托管进程介绍及优先级和回收机制
  • Android网络共享软件 Android Wifi Tether
  • Android访问与手机通讯相关类的介绍
  • Android 图标库 Android GraphView
  • Android及andriod无线网络Wifi开发的几点注意事项
  • 轻量级Android开发工具 Android Tools
  • Android 2.3 下StrictMode介绍
  • Android 开发环境 Android Studio
  • IDEA的Android开发插件 idea-android
  • Android手机事件提醒 Android Notifier
  • XBMC的Android客户端 android-xbmcremote
  • Android小游戏 Android Shapes
  • Android电池监控 Android Battery Dog
  • android开发:“android:WindowTitle”没有对应项no resource
  • Android 上类似IOS 的开关控件。 Android ToggleButton
  • Android 将 android view 的位置设为右下角的解决方法
  • Android 2D游戏引擎 Android Angle


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3