希望我的问题有一个简单的解决方案。我刚刚开始使用 sqlite3,我创建了一个名为的数据库local
和一个名为的表,其中包含一个名为texttable
的列。name
它可以很好地连接到数据库,只是我试图将字符串值输入到表列中,但我认为我的 INSERT 文本存在问题。我知道如果有人能让我知道我哪里出错了,这可能很简单。谢谢。
SString *inserStmt = [NSString stringWithFormat:@"INSERT INTO TABLE(NAME) VALUES ('%s')", [key UTF8String]];
const char *insert_stmt = [inserStmt UTF8String];
sqlite3_exec(database, insert_stmt, NULL, NULL, NULL);