DCFSQLite 1.0.0

DCFSQLite 1.0.0

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2014年12月

未指定 维护。



DCFSQLite 1.0.0

DCFSQLite - 用于在移动 iOS 应用中使用 SQLite 实现便捷访问、命令执行和查询的库。

之前

您需要导入 SQLite3 框架。框架 -> 添加现有框架 -> libsql3.dylib

如何使用

# import "DCFSQLite.h"

//Init database 
[DCFSQLite initDB:@"myapp.db"];

// To create, insert, update and delete
BOOL ok = [DCFSQLite execSQL:@"INSERT INTO Customer (name, email) VALUES ('Diego', '[email protected]')"];

//OR
BOOL ok = [DCFSQLite execSQL:@"INSERT INTO Customer (name, email) VALUES (?, ?)", @"Diego", @"[email protected]"];

//For get result queryes
NSArray *qryResult = [DCFSQLite getRows:@"SELECT * FROM Customer"];