发布网友 发布时间:2022-04-21 20:26
共2个回答
懂视网 时间:2022-04-29 23:51
android.app.Activity; import android.content.ContentValues; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity { private Button create_database = null; private Button update_database = null; private Button insert = null; private Button update = null; private Button query = null; private Button delete = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); create_database = (Button)findViewById(R.id.create_database); create_database.setOnClickListener(new CreateDatabaseOnClickListener()); update_database = (Button)findViewById(R.id.update_database); update_database.setOnClickListener(new UpdateDatabaseOnClickListener()); insert = (Button)findViewById(R.id.insert); insert.setOnClickListener(new InsertOnClickListener()); update = (Button)findViewById(R.id.update); update.setOnClickListener(new UpdateOnClickListener()); query = (Button)findViewById(R.id.query); query.setOnClickListener(new QueryOnClickListener()); delete = (Button)findViewById(R.id.delete); delete.setOnClickListener(new DeleteOnClickListener()); } public class CreateDatabaseOnClickListener implements OnClickListener{ public void onClick(View v) { // TODO Auto-generated method stub //创建一个DatabaseHelper类的对象,该类是单独一个java文件,这里采用2个参数的构造函数,建立的数据 //库的名字为tornadomeet.db DatabaseHelper database_helper = new DatabaseHelper(MainActivity.this, "tornadomeet.db"); //只有调用getReadableDatabase()或者getWriteableDatabase()函数后才能返回一个SQLiteDatabase对象 SQLiteDatabase db = database_helper.getReadableDatabase(); } } public class UpdateDatabaseOnClickListener implements OnClickListener{ public void onClick(View v) { // TODO Auto-generated method stub DatabaseHelper database_helper = new DatabaseHelper(MainActivity.this, "tornadomeet.db", 2); SQLiteDatabase db = database_helper.getReadableDatabase(); } } public class InsertOnClickListener implements OnClickListener{ public void onClick(View v) { // 生成contentvallues对象,该对象用来存数据的 ContentValues values = new ContentValues(); values.put("id", 1);//注意值的类型要匹配 values.put("name", "tornado"); DatabaseHelper database_helper = new DatabaseHelper(MainActivity.this, "tornadomeet.db"); SQLiteDatabase db = database_helper.getWritableDatabase();//这里是获得可写的数据库 db.insert("user1", null, values); } } public class UpdateOnClickListener implements OnClickListener{ public void onClick(View v) { // TODO Auto-generated method stub DatabaseHelper database_helper = new DatabaseHelper(MainActivity.this, "tornadomeet.db"); SQLiteDatabase db = database_helper.getWritableDatabase(); ContentValues values = new ContentValues(); values.put("name", "tornadomeet"); //参数1为表名,参数2为更新后的值,参数3表示满足条件的列名称,参数4为该列名下的值 db.update("user1", values, "id=?", new String[]{"1"}); } } public class QueryOnClickListener implements OnClickListener{ public void onClick(View v) { // TODO Auto-generated method stub DatabaseHelper database_helper = new DatabaseHelper(MainActivity.this, "tornadomeet.db"); SQLiteDatabase db = database_helper.getWritableDatabase(); //查询的语法,参数1为表名;参数2为表中的列名;参数3为要查询的列名;参数时为对应列的值;该函数返回的是一个游标 Cursor cursor = db.query("user1", new String[]{"id", "name"}, "id=?", new String[]{"1"}, null, null, null); //遍历每一个记录 while(cursor.moveToNext()) { String name = cursor.getString(cursor.getColumnIndex("name"));//返回列名为name的值 System.out.println("query---->" + name); } } } public class DeleteOnClickListener implements OnClickListener{ public void onClick(View v) { // TODO Auto-generated method stub DatabaseHelper database_helper = new DatabaseHelper(MainActivity.this, "tornadomeet.db"); SQLiteDatabase db = database_helper.getWritableDatabase(); //直接删除名为tornadomeet对应的那条记录 db.delete("user1", "name=?" ,new String[]{"tornadomeet"}); } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_main, menu); return true; } }
import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import android.database.sqlite.SQLiteOpenHelper; public class DatabaseHelper extends SQLiteOpenHelper { private static final int VERSON = 1;//默认的数据库版本 //继承SQLiteOpenHelper类的类必须有自己的构造函数 //该构造函数4个参数,直接调用父类的构造函数。其中第一个参数为该类本身;第二个参数为数据库的名字; //第3个参数是用来设置游标对象的,这里一般设置为null;参数四是数据库的版本号。 public DatabaseHelper(Context context, String name, CursorFactory factory, int verson){ super(context, name, factory, verson); } //该构造函数有3个参数,因为它把上面函数的第3个参数固定为null了 public DatabaseHelper(Context context, String name, int verson){ this(context, name, null, verson); } //该构造函数只有2个参数,在上面函数 的基础山将版本号固定了 public DatabaseHelper(Context context, String name){ this(context, name, VERSON); } //该函数在数据库第一次被建立时调用 @Override public void onCreate(SQLiteDatabase arg0) { // TODO Auto-generated method stub System.out.println("create a sqlite database"); //execSQL()为执行参数里面的SQL语句,因此参数中的语句需要符合SQL语法,这里是创建一个表 arg0.execSQL("create table user1(id int, name varchar(20))"); } @Override public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2) { // TODO Auto-generated method stub System.out.println("update a sqlite database"); } }
1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" > 5 6 <Button 7 android:id="@+id/create_database" 8 android:layout_width="fill_parent" 9 android:layout_height="wrap_content" 10 android:layout_alignParentBottom="true" 11 android:text="@string/create_database" 12 /> 13 14 <Button 15 android:id="@+id/update_database" 16 android:layout_width="fill_parent" 17 android:layout_height="wrap_content" 18 android:layout_above="@id/create_database" 19 android:layout_alignParentLeft="true" 20 android:text="@string/update_database" /> 21 22 <Button 23 android:id="@+id/insert" 24 android:layout_width="fill_parent" 25 android:layout_height="wrap_content" 26 android:layout_above="@id/update_database" 27 android:layout_alignParentLeft="true" 28 android:text="@string/insert" /> 29 30 <Button 31 android:id="@+id/update" 32 android:layout_width="fill_parent" 33 android:layout_height="wrap_content" 34 android:layout_above="@id/insert" 35 android:layout_alignParentLeft="true" 36 android:text="@string/update" /> 37 38 <Button 39 android:id="@+id/query" 40 android:layout_width="fill_parent" 41 android:layout_height="wrap_content" 42 android:layout_alignParentLeft="true" 43 android:layout_above="@id/update" 44 android:text="@string/query" 45 /> 46 <Button 47 android:id="@+id/delete" 48 android:layout_width="fill_parent" 49 android:layout_height="wrap_content" 50 android:layout_alignParentLeft="true" 51 android:layout_above="@id/query" 52 android:text="@string/delete" 53 /> 54 55 </RelativeLayout>布局文件
SQLite基本用法
标签:
热心网友 时间:2022-04-29 20:59
SQLite3是目前最新的SQLite版本。可以从网站上下载SQLite3的源代码(本书使用的版本是sqlite-3.6.12.tar.gz)。
解压缩后进入sqlite-3.6.12的根目录,首先命令“./configure”生成Makefile文件,接着运行命令“make”对源代码进行编译,最后运行命令“make install”安装SQLite3。安装完毕后,可以运行命令sqlite3查看SQLite3是否能正常运行,如下所示:
[root@localhost ~]# sqlite3
SQLite version 3.6.12
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
可以看到,SQLite3启动后会停留在提示符sqlite>处,等待用户输入SQL语句。
在使用SQLite3前需要先了解下SQLite3支持的数据类型。SQLite3支持的基本数据类型主要有以下几类:
NULL
NUMERIC
INTEGER
REAL
TEXT
SQLite3会自动把其他数据类型转换成以上5类基本数据类型,转换规则如下所示:
char、clob、test、varchar—> TEXT
integer—>INTEGER
real、double、float—> REAL
blob—>NULL
其余数据类型都转变成NUMERIC
下面通过一个实例来演示SQLite3的使用方法。
新建一个数据库
新建数据库test.db(使用.db后缀是为了标识数据库文件)。在test.db中新建一个表test_table,该表具有name,、sex、age三列。SQLite3的具体操作如下所示:
[root@localhost home]# sqlite3 test.db
SQLite version 3.6.12
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table test_table(name, sex, age);
如果数据库test.db已经存在,则命令“sqlite3 test.db”会在当前目录下打开test.db。如果数据库test.db不存在,则命令“sqlite3 test.db”会在当前目录下新建数据库test.db。为了提高效率,SQLite3并不会马上创建test.db,而是等到第一个表创建完成后才会在物理上创建数据库。
由于SQLite3能根据插入数据的实际类型动态改变列的类型,所以在create语句中并不要求给出列的类型。
创建索引
为了加快表的查询速度,往往在主键上添加索引。如下所示的是在name列上添加索引的过程。
sqlite> create index test_index on test_table(name);
操作数据
如下所示的是在test_table中进行数据的插入、更新、删除操作:
sqlite> insert into test_table values ('xiaoming', 'male', 20);
sqlite> insert into test_table values ('xiaohong', 'female', 18);
sqlite> select * from test_table;
xiaoming|male|20
xiaohong|female|18
sqlite> update test_table set age=19 where name = 'xiaohong';
sqlite> select * from test_table;
xiaoming|male|20
xiaohong|female|19
sqlite> delete from test_table where name = 'xiaoming';
sqlite> select * from test_table;
xiaohong|female|19
批量操作数据库
如下所示的是在test_table中连续插入两条记录:
sqlite> begin;
sqlite> insert into test_table values ('xiaoxue', 'female', 18);
sqlite> insert into test_table values ('xiaoliu', 'male', 20);
sqlite> commit;
sqlite> select * from test_table;
xiaohong|female|19
xiaoxue|male|18
xiaoliu|male|20
运行命令commit后,才会把插入的数据写入数据库中。
数据库的导入导出
如下所示的是把test.db导出到sql文件中:
[root@localhost home]# sqlite3 test.db ".mp" > test.sql;
test.sql文件的内容如下所示:
BEGIN TRANSACTION;
CREATE TABLE test_table(name, sex, age);
INSERT INTO "test_table" VALUES('xiaohong','female',19);
CREATE INDEX test_index on test_table(name);
COMMIT;
如下所示的是导入test.sql文件(导入前删除原有的test.db):
[root@localhost home]# sqlite3 test.db < test.sql;
通过对test.sql文件的导入导出,可以实现数据库文件的备份。
11.2.2 SQLite3的C接口
以上介绍的是SQLite3数据库的命令操作方式。在实际使用中,一般都是应用程序需要对数据库进行访问。为此,SQLite3提供了各种编程语言的使用接口(本书介绍C语言接口)。SQLite3具有几十个C接口,下面介绍一些常用的C接口。
sqlite_open
作用:打开SQLite3数据库
原型:int sqlite3_open(const char *dbname, sqlite3 **db)
参数:
dbname:数据库的名称;
db:数据库的句柄;
sqlite_colse
作用:关闭SQLite3数据库
原型:int sqlite_close(sqlite3 *db)
例如:
test.c:
#include <stdio.h>
#include <sqlite3.h>
static sqlite3 *db=NULL;
int main()
{
int rc;
rc= sqlite3_open("test.db", &db);
if(rc)
{
printf("can't open database!\n");
}
else
{
printf("open database success!\n");
}
sqlite3_close(db);
return 0;
}
运行命令“gcc –o test test.c –lsqlite3”进行编译,运行test的结果如下所示:
[root@localhost home]# open database success!
sqlite_exec
作用:执行SQL语句
原型:int sqlite3_exec(sqlite3 *db, const char *sql, int (*callback)(void*,int,char**,char**), void *, char **errmsg)
参数:
db:数据库;
sql:SQL语句;
callback:回滚;
errmsg:错误信息
例如:
test.c:
#include <stdio.h>
#include <sqlite3.h>
static sqlite3 *db=NULL;
static char *errmsg=NULL;
int main()
{
int rc;
rc = sqlite3_open("test.db", &db);
rc = sqlite3_exec(db,"insert into test_table values('bao', 'male', 24)", 0, 0, &errmsg);
if(rc)
{
printf("exec fail!\n");
}
else
{
printf("exec success!\n");
}
sqlite3_close(db);
return 0;
}
编译完成后,运行test的结果如下所示:
[root@localhost home]# ./test
exec success!
[root@localhost home]# sqlite3 test.db
SQLite version 3.6.11
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select * from test_table;
bao|male|24
sqlite3_get_table
作用:执行SQL查询
原型:int sqlite3_get_table(sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrmsg)
参数:
db:数据库;
zSql:SQL语句;
pazResult:查询结果集;
pnRow:结果集的行数;
pnColumn:结果集的列数;
errmsg:错误信息;
sqlite3_free_table
作用:注销结果集
原型:void sqlite3_free_table(char **result)
参数:
result:结果集;
例如:
test.c:
#include <stdio.h>
#include <sqlite3.h>
static sqlite3 *db=NULL;
static char **Result=NULL;
static char *errmsg=NULL;
int main()
{
int rc, i, j;
int nrow;
int ncolumn;
rc= sqlite3_open("test.db", &db);
rc= sqlite3_get_table(db, "select * from test_table", &Result, &nrow, &ncolumn,
&errmsg);
if(rc)
{
printf("query fail!\n");
}
else
{
printf("query success!\n");
for(i = 1; i <= nrow; i++)
{
for(j = 0; j < ncolumn; j++)
{
printf("%s | ", Result[i * ncolumn + j]);
}
printf("\n");
}
}
sqlite3_free_table(Result);
sqlite3_close(db);
return 0;
}
编译完成后,运行test的结果如下所示:
[root@localhost home]# ./test
query success!
xiaohong | female | 19 |
xiaoxue | female | 18 |
xiaoliu | male | 20 |
bao | male | 24 |
sqlite3_prepare
作用:把SQL语句编译成字节码,由后面的执行函数去执行
原型:int sqlite3_prepare(sqlite3 *db, const char *zSql, int nByte, sqlite3_stmt **stmt, const char **pTail)
参数:
db:数据库;
zSql:SQL语句;
nByte:SQL语句的最大字节数;
stmt:Statement句柄;
pTail:SQL语句无用部分的指针;
sqlite3_step
作用:步步执行SQL语句字节码
原型:int sqlite3_step (sqlite3_stmt *)
例如:
test.c:
#include <stdio.h>
#include <sqlite3.h>
static sqlite3 *db=NULL;
static sqlite3_stmt *stmt=NULL;
int main()
{
int rc, i, j;
int ncolumn;
rc= sqlite3_open("test.db", &db);
rc=sqlite3_prepare(db,"select * from test_table",-1,&stmt,0);
if(rc)
{
printf("query fail!\n");
}
else
{
printf("query success!\n");
rc=sqlite3_step(stmt);
ncolumn=sqlite3_column_count(stmt);
while(rc==SQLITE_ROW)
{
for(i=0; i<2; i++)
{
printf("%s | ", sqlite3_column_text(stmt,i));
}
printf("\n");
rc=sqlite3_step(stmt);
}
}
sqlite3_finalize(stmt);
sqlite3_close(db);
return 0;
}
编译完成后,运行test的结果如下所示:
[root@localhost home]# ./test
query success!
xiaohong | female | 19 |
xiaoxue | female | 18 |
xiaoliu | male | 20 |
bao | male | 24 |
在程序中访问SQLite3数据库时,要注意C API的接口定义和数据类型是否正确,否则会得到错误的访问结果。