我正在尝试使用Objective-C(最新的xcode)将字符串插入sqlite数据库,但是由于某些奇怪的原因,我在stackoverflow或互联网上找到的每个示例通常似乎对我不起作用。
我没有使用任何 sdk,所以它是简单的目标 c。
有没有人有一个实际工作的示例代码并将数据插入可以检索的数据库中?
谢谢
sqlite3 *database;
if(sqlite3_open(___database file path__, &database) == SQLITE_OK)
{
NSString * str = [[NSString alloc] initWithFormat:@"INSERT INTO %@ VALUES %@",___table name___,___value___];
const char * sqlStatement = [str UTF8String];
}
else
{
//ERROR
return;
}
sqlite3_stmt *compiledStatement;
if(sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK)
{
while(sqlite3_step(compiledStatement) == SQLITE_ROW)
{
for (int i = 0;; i++)
{
char * ch;
if ((ch = (char *)sqlite3_column_text(compiledStatement, i)))
{
NSString * ret = [NSString stringWithCString:ch encoding:NSUTF8StringEncoding];
}
else
{
break;
}
}
}
}
sqlite3_finalize(compiledStatement);
sqlite3_close(database);
这段代码像这样在表中插入值..