代码如下:
public DatabaseHelper(Context context, String name, CursorFactory factory,
int version) {
//必须通过super调用父类当中的构造函数
super(context, name, factory, version);
} 为了便利,也可以创立其它的构造函数,含二个参数或者三个参数的。
2、函数public void onCreate(SQLiteDatabase db)是在调用getReadableDatabase()或者是getWritableDatabase()第一次创立数据库的时候执行,实际上是在第一次失掉SQLiteDatabse对象的时候,才会调用这个方法.
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)public void onCreate(SQLiteDatabase db) {
System.out.println("create a Database");
//execSQL函数用于执行SQL语句
db.execSQL("create table user(id int,name varchar(20))");
}
上面是写好的例子,可以参考下
代码如下:
public class DBHelper {
private static DatabaseHelper mDbHelper;
private static SQLiteDatabase mDb;
private static final String DATABASE_NAME = "life";
private static final int DATABASE_VERSION = 1;
private Context mCtx;
private static class DatabaseHelper extends SQLiteOpenHelper {
DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
//创立表结构
db.execSQL("CREATE TABLE life_history (id INTEGER PRIMARY KEY AUTOINCREMENT,type TEXT, city TEXT, company TEXT, pucNum TEXT, pucName TEXT);");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
}
public DBHelper(Context ctx) throws SQLException {
this.mCtx = ctx;
mDbHelper = new DatabaseHelper(mCtx);
mDb = mDbHelper.getWritableDatabase();
}
/**
* 关闭数据源
*/
public void closeConnection() {
if (mDb != null && mDb.isOpen())
mDb.close();
if (mDbHelper != null)
mDbHelper.close();
}
/**
* 插入数据 参数
* @param tableName 表名
* @param initialValues 要插入的列对应值
* @return
*/
public long insert(String tableName, ContentValues initialValues) {
return mDb.insert(tableName, null, initialValues);
}
/**
* 删除数据
* @param tableName 表名
* @param deleteCondition 条件
* @param deleteArgs 条件对应的值(如果deleteCondition中有“?”号,将用此数组中的值替换,一一对应)
* @return
*/
public boolean delete(String tableName, String deleteCondition, String[] deleteArgs) {
return mDb.delete(tableName, deleteCondition, deleteArgs) 0;
}
/**
* 更新数据
* @param tableName 表名
* @param initialValues 要更新的列
* @param selection 更新的条件
* @param selectArgs 更新条件中的“?”对应的值
* @return
*/
public boolean update(String tableName, ContentValues initialValues, String selection, String[] selectArgs) {
return mDb.update(tableName, initialValues, selection, selectArgs) 0;
}
/**
* 取得一个列表
* @param distinct 是否去重复
* @param tableName 表名
* @param columns 要返回的列
* @param selection 条件
* @param selectionArgs 条件中“?”的参数值
* @param groupBy 分组
* @param having 分组过滤条件
* @param orderBy 排序
* @return
*/
public Cursor findList(boolean distinct, String tableName, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) {
return mDb.query(distinct, tableName, columns, selection, selectionArgs, groupBy, having, orderBy, limit);
}
/**
* 取得单行记录
* @param tableName 表名
* @param columns 获取的列数组
* @param selection 条件
* @param selectionArgs 条件中“?”对应的值
* @param groupBy 分组
* @param having 分组条件
* @param orderBy 排序
* @param limit 数据区间
* @param distinct 是否去重复
* @return
* @throws SQLException
*/
public Cursor findOne(boolean distinct, String tableName, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) throws SQLException {
Cursor mCursor = findList(distinct, tableName, columns, selection, selectionArgs, groupBy, having, orderBy, limit);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
/**
* 执行SQL(带参数)
* @param sql
* @param args SQL中“?”参数值
*/
public void execSQL(String sql, Object[] args) {
mDb.execSQL(sql, args);
}
/**
* 执行SQL
* @param sql
*/
public void execSQL(String sql) {
mDb.execSQL(sql);
}
/**
* 判断某张表是否存在
* @param tabName 表名
* @return
*/
public boolean isTableExist(String tableName) {
boolean result = false;
if (tableName == null) {
return false;
}
try {
Cursor cursor = null;
String sql = "select count(1) as c from sqlite_master where type ='table' and name ='" + tableName.trim() + "'";
cursor = mDb.rawQuery(sql, null);
if (cursor.moveToNext()) {
int count = cursor.getInt(0);
if (count 0) {
result = true;
}
}
cursor.close();
}
catch (Exception e) {
}
return result;
}
/**
* 判断某张表中是否存在某字段(注,该方法无法判断表是否存在,因此应与isTableExist一起应用)
* @param tabName 表名
* @param columnName 列名
* @return
*/
public boolean isColumnExist(String tableName, String columnName) {
boolean result = false;
if (tableName == null) {
return false;
}
try {
Cursor cursor = null;
String sql = "select count(1) as c from sqlite_master where type ='table' and name ='" + tableName.trim() + "' and sql like '%" + columnName.trim() + "%'";
cursor = mDb.rawQuery(sql, null);
if (cursor.moveToNext()) {
int count = cursor.getInt(0);
if (count 0) {
result = true;
}
}
cursor.close();
}
catch (Exception e) {
}
return result;
}
}