0
更新クエリをiphoneに実行する方法。以下はiphone用のsqliteへの更新クエリの実行方法
更新クエリをiphoneに実行する方法。以下はiphone用のsqliteへの更新クエリの実行方法
どのプログラミング言語
sqlite3_stmt *selectStml=nil;
const char *sql_qry = "select * from tableName";
if(sqlite3_prepare_v2(database, sql_qry, -1, &selectStml, NULL)!=SQLITE_OK){
NSAssert1(0,@"Error while creating update statement for store. '%s'",sqlite3_errmsg(database));
}
sqlite3_bind_text(selectStml, 1, [[[aryRecord objectAtIndex:i] objectAtIndex:0] UTF8String], -1, SQLITE_TRANSIENT);
、クエリのコードですか? C、C++、Objective-C、アセンブリ? (プログラミング言語が質問に書かれていない場合、私は常に** Malbolgeを想定しています)。 –