在数据库中插入数据的时候,报错:Prepare-error library routine called out of sequence
代码如下,麻烦帮我看看错误出在哪儿了。谢谢
NSString *databaseName = @"DB.sqlite";
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
NSString *databasePath = [documentsDir stringByAppendingPathComponent:databaseName];
sqlite3 *concertsDB;
const char *dbpath = [databasePath UTF8String];
if (sqlite3_open(dbpath,&concertsDB) == sqlITE_OK)
{
sqlite3_exec(concertsDB,"BEGIN TRANSACTION",0);
const char *sqlStatement = "INSERT INTO concertsData VALUES (?,?,?)";
sqlite3_stmt *compiledStatement;
if (sqlite3_prepare_v2(concertsDB,sqlStatement,-1,&compiledStatement,NULL) == sqlITE_OK) {
int hasError;
for (int i=0; i<[events count]; i++) {
sqlite3_bind_text(compiledStatement,1,[[[events objectAtIndex:i] title] UTF8String],sqlITE_TRANSIENT);
sqlite3_bind_int(compiledStatement,2,[[[events objectAtIndex:i] date] timeIntervalSince1970]);
sqlite3_bind_text(compiledStatement,3,[[[events objectAtIndex:i] time] UTF8String],sqlITE_TRANSIENT);
sqlite3_bind_text(compiledStatement,4,[[[events objectAtIndex:i] shortDesription] UTF8String],5,[[[events objectAtIndex:i] conductor] UTF8String],6,[[[events objectAtIndex:i] location] UTF8String],7,[[[events objectAtIndex:i] durations] UTF8String],8,[[[events objectAtIndex:i] works] UTF8String],9,[[[events objectAtIndex:i] solists] UTF8String],10,[[[events objectAtIndex:i] fulltext] UTF8String],sqlITE_TRANSIENT);
sqlite3_bind_text(compiledStatement,11,[[[[events objectAtIndex:i] concertUrl] absoluteString] UTF8String],12,[[[[events objectAtIndex:i] buyUrl] absoluteString] UTF8String],13,[[[events objectAtIndex:i] imageName] UTF8String],sqlITE_TRANSIENT);
if (sqlite3_step(compiledStatement) != sqlITE_DONE) {
hasError=1;
NSLog(@"Prepare-error %s",sqlite3_errmsg(concertsDB));
}
sqlite3_clear_bindings(compiledStatement);
}
sqlite3_reset(compiledStatement);
if( hasError == 0 ) {
sqlite3_exec(concertsDB,"COMMIT",0);
}
else {
sqlite3_exec(concertsDB,"ROLLBACK",0);
}
}
sqlite3_close(concertsDB);
}