//创建一个静态指针
static sqlite3 *db = nil;
//打开数据库
-(void)openDB
{
//如果数据已经打开了,就不要再打开了。
if (nil != db) {
return;
}
//创建路径 --获取主路径 再拼接一个后缀
NSString *path = NSHomeDirectory();
path = [path stringByAppendingPathComponent:@"z_student.splite"];
//打开数据库
sqlite3_open([path UTF8String],&db);
if (sqlITE_OK == sqlite3_open([path UTF8String],&db)) {
NSLog(@" 成功");
}else
{
NSLog(@" 失败");
}
}
原文链接:https://www.f2er.com/sqlite/199303.html