android内置数据库的简单实现
1.首先创建一个数据的帮助类,继承SQLiteOpenHelper。 MyDBOpenHelper 代码如下: package cn.sg.mydb; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; im
1.首先创建一个数据的帮助类,继承SQLiteOpenHelper。
MyDBOpenHelper
代码如下:
package cn.sg.mydb;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
public class MyDBOpenHelper extends SQLiteOpenHelper {
//我的数据打开帮助类的构造方法
public MyDBOpenHelper(Context context) {
super(context, "cn.sg.mydb", null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("DROP TABLE IF NOT EXITS person( _id integer primary key autoincrement, name varchar(40), age integer)");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
}
}
2.写一个测试类,看看数据库有没有实现了。
MyDBOpenHelperTest 类的代码如下:
package cn.sg.mydb.test;
import cn.sg.mydb.MyDBOpenHelper;
import android.test.AndroidTestCase;
public class MyDBOpenHelperTest extends AndroidTestCase {
public void testOncreateDatabase(){
new MyDBOpenHelper(this.getContext());
}
}
3.配置一些配置文件,androidmanifest.xml
androidmanifest.xml的代码如下:
android:versionCode="1"
android:versionName="1.0" >
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="cn.sg.mydb"
>
android:label="@string/app_name" >
android:label="@string/app_name" >
红色标记的是新添加的配置文件。
4.最后测试一下,如果看看有没生成这个数据库,如果有的话,说明你创建的数据库已经创建成功了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics





In recent days, Ice Universe has been steadily revealing details about the Galaxy S25 Ultra, which is widely believed to be Samsung's next flagship smartphone. Among other things, the leaker claimed that Samsung only plans to bring one camera upgrade

OnLeaks has now partnered with Android Headlines to provide a first look at the Galaxy S25 Ultra, a few days after a failed attempt to generate upwards of $4,000 from his X (formerly Twitter) followers. For context, the render images embedded below h

Samsung has not offered any hints yet about when it will update its Fan Edition (FE) smartphone series. As it stands, the Galaxy S23 FE remains the company's most recent edition, having been presented at the start of October 2023. However, plenty of

In recent days, Ice Universe has been steadily revealing details about the Galaxy S25 Ultra, which is widely believed to be Samsung's next flagship smartphone. Among other things, the leaker claimed that Samsung only plans to bring one camera upgrade

The Redmi Note 14 Pro Plus is now official as a direct successor to last year'sRedmi Note 13 Pro Plus(curr. $375 on Amazon). As expected, the Redmi Note 14 Pro Plus heads up the Redmi Note 14 series alongside theRedmi Note 14and Redmi Note 14 Pro. Li

OnePlus'sister brand iQOO has a 2023-4 product cycle that might be nearlyover; nevertheless, the brand has declared that it is not done with itsZ9series just yet. Its final, and possibly highest-end,Turbo+variant has just beenannouncedas predicted. T

AGM Mobile has come toIFA 2024to present the Pad P2 Active as its latest tablet, and its first with areinforced black-and-orange casing. It is touted as outdoor work-friendly thanks to its a 360°flip-out ring that can act as akick-standor handle at n

Historically, Oppo has refreshed its flagship 'Find X' series in late winter or early spring, save for the original Find X that it announced in June 2018. To that end, the Find X7 and Find X7 Ultra are barely more than six months old at this point. H
