我正在使用SQLite3进行iPhone开发,我试图将一些插入语句包装到一个事务中.目前我有以下代码正常工作但是在阅读了另一个关于SO的问题后,我意识到最好将这些问题放在一个事务中而不是每个事务中.我找不到C API调用来开始和提交事务.有些代码是在Objective-C中,但我认为这与问题无关.
- (void)saveAnimals {
//Insert all the animals into the zoo database
int i;
const char *sql = "insert into Animal(Zoo_ID, Animal_Num, Animal_Text) Values(?, ?, ?)";
for (i = 0; i < ([[self animalArray] count] - 1); i++) {
if(addStmt == nil) {
if(sqlite3_prepare_v2(database, sql, -1, &addStmt, NULL) != SQLITE_OK)
NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database));
}
int animalNum = [[[self animalArray] objectAtIndex:i] animal_Number];
NSString *animalText = [[NSString alloc] initWithString:[[[self animalArray] objectAtIndex:i] animal_Text]];
sqlite3_bind_int(addStmt, 1, zoo_ID);
sqlite3_bind_int(addStmt, …Run Code Online (Sandbox Code Playgroud)