(一一三)使用系统自带框架操作SQLite3数据库

前端之家收集整理的这篇文章主要介绍了(一一三)使用系统自带框架操作SQLite3数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

系统自带的框架是基于C语言的,使用比较繁琐。

下面是使用步骤:

首先导入libsqlite3.0.dylib。

①在Document目录下打开数据库,如果没有则创建。

NSString *sqlitePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) lastObject] stringByAppendingPathComponent:@"test.sqlite"];
// 数据库不存在会自动创建
sqlite3 *db = NULL;
int state = sqlite3_open(sqlitePath.UTF8String,&db);
if (state == sqlITE_OK) {
    NSLog(@"打开数据库成功");
}else{
    NSLog(@"打开数据库失败");
}
②创建一张表和插入数据。

const char *sql = "CREATE TABLE IF NOT EXISTS t_product (id integer PRIMARY KEY AUTOINCREMENT,name text NOT NULL,price real);";
char *err = NULL;
sqlite3_exec(db,sql,NULL,&err);
sql = "INSERT INTO t_product (name,price) values ('饮料',10)";
sqlite3_exec(db,&err);

查询数据。

查询数据通过执行step让STMT从前到后抓取数据,拿到数据后可以转换为OC字符串再处理。

// 查询数据
// STMT会自动向后指数据
sqlite3_stmt *stmt = NULL; // STMT用来取出查询的结果
sql = "SELECT * FROM t_product";
state = sqlite3_prepare(db,-1,&stmt,NULL);
if (state == sqlITE_OK) {
    NSLog(@"准备成功");
    while(sqlite3_step(stmt) == sqlITE_ROW){ // 成功取出一条数据
        const char *cname = (const char*)sqlite3_column_text(stmt,1);// 第0列是id,取出第1列数据name
        const char *cprice = (const char*)sqlite3_column_text(stmt,2);// 取出第2列数据price
        NSString *name = [NSString stringWithUTF8String:cname];
        NSString *price = [NSString stringWithUTF8String:cprice];
        NSLog(@"%@ %@",name,price);
    }
    
}else{
    NSLog(@"准备失败");
}
原文链接:https://www.f2er.com/sqlite/199446.html

猜你在找的Sqlite相关文章