Created
June 7, 2012 11:01
-
-
Save Matsushige/2888223 to your computer and use it in GitHub Desktop.
ユーザー用データベース
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.ContentValues; | |
import android.content.Context; | |
import android.database.sqlite.SQLiteDatabase; | |
import android.database.sqlite.SQLiteOpenHelper; | |
public class UsersDatabaseHelper extends SQLiteOpenHelper { | |
public UsersDatabaseHelper(Context context) { | |
super(context, "NFC1.2.sqlite", null, 1); | |
// TODO Auto-generated constructor stub | |
} | |
@Override | |
public void onCreate(SQLiteDatabase db) { | |
// TODO Auto-generated method stub | |
db.execSQL("CREATE TABLE users(" + | |
"_id INTEGER PRIMARY KEY AUTOINCREMENT," + | |
"type TEXT, id TEXT, user_name TEXT, math INTEGER)"); | |
ContentValues cv = new ContentValues(); | |
cv.put("type", "NfcF"); | |
cv.put("id", "0115E5005B0BB104"); | |
cv.put("user_name", "学生証"); | |
db.insert("users", null, cv); | |
} | |
@Override | |
public void onUpgrade(SQLiteDatabase db, int arg1, int arg2) { | |
// TODO Auto-generated method stub | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment