Wei-MengLeeの「BeginningAndroidApplicationDevelopment」から次のコードを借りました。
import android.content.Context;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public class DBAdapter {
private static final String TAG = "DBAdapter";
private static final String DATABASE_NAME = "MyDB";
private static final int DATABASE_VERSION = 1;
private static final String DATABASE_CREATE =
"create table contacts (_id integer primary key autoincrement, "
+ "name text not null, email text not null);";
private final Context context;
private DatabaseHelper DBHelper;
private SQLiteDatabase db;
public DBAdapter (Context ctx)
{
this.context = ctx;
DBHelper = new DatabaseHelper(context);
}
private static class DatabaseHelper extends SQLiteOpenHelper
{
DatabaseHelper(Context context)
{
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db)
{
try {
db.execSQL(DATABASE_CREATE);
} catch (SQLException e) {
e.printStackTrace();
}
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old data");
db.execSQL("DROP TABLE IF EXISTS contacts");
onCreate(db);
}
}
}
もっとありますが、私は単純化しようとしています。
次のエラーが発生します。
説明リソースパスロケーションタイプ
トークン")"の構文エラー、{このトークンの後に予期されるDBAdapter.java
の終わりにonUpgrade
構文エラー、「}」を挿入してClassBodyDBAdapter.javaを完成させます
構文エラー、「}」を挿入してClassBodyDBAdapter.javaを完成させます
の終わりにonCreate
私はAndroidアプリを初めて使用するので、誰かがこれらのメッセージを理解するのを手伝ってくれませんか?
Eclipseが表示しているものは次のとおりです。