文件名称:安卓本地数据库代码
文件大小:1.23MB
文件格式:RAR
更新时间:2016-11-03 22:56:20
安卓 本地 数据库
package com.bn.rcgl;
import java.util.ArrayList;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import android.widget.Toast;
import static com.bn.rcgl.Constant.*;
import static com.bn.rcgl.RcActivity.*;
public class DBUtil
{
static SQLiteDatabase sld;
//============================所有处理类型数据库的方法start==============================
public static void loadType(RcActivity father)//从类型数据库中读取数据
{
try
{
sld=SQLiteDatabase.openDatabase
(
"/data/data/com.bn.rcgl/myDb",
null,
SQLiteDatabase.OPEN_READWRITE|SQLiteDatabase.CREATE_IF_NECESSARY
);
String sql="create table if not exists type(tno integer primary key,tname varchar2(20));";
sld.execSQL(sql);
Cursor cursor=sld.query("type", null, null, null, null, null, "tno");
int count=cursor.getCount();
if(count==0)//如果是第一次运行程序,自动创建3个缺省类型
{
for(int i=0;i