本文介绍了以编程方式在iphone sdk中创建sqlite数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
hai我试图在运行时以编程方式创建一个sqlite数据库。
hai i a'm trying to create a sqlite database programmatically at the run time. can anybody say how to create it in iphone sdk.
推荐答案
只要调用sqlite3_open函数,它将创建一个数据库,如果没有数据库存在
Just call the sqlite3_open function it will create a database if no database exist on the path.
// generate databasePath programmatically
if(sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK)
{
// your code here
}
b $ b
如果您需要更多代码示例,请发布评论
post a comment if you need more code example on this
这篇关于以编程方式在iphone sdk中创建sqlite数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!