android提交sql语句,Android实现创建或升级数据库时执行语句

本文实例讲述了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程序开发能够起到一定的帮助作用。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值