sqlite を使用して、Android の db に画像を挿入するクエリがあります。
String sqlQuerry = "INSERT table_name SET column_name = ? WHERE pk_id =last_insert_rowid();";
SQLiteStatement insertStmt = sqliteDataBase .compileStatement(sqlQuerry);
insertStmt.clearBindings();
insertStmt.bindBlob(1, byteArray);
insertStmt.execute();
しかし、これはsqlite が返されたことを示しています: error code = 1, msg = near "SET": syntax error
どうすればこれを修正できますか?
前もって感謝します