접기
public class Main extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
_tvCaption = (TextView) findViewById(R.id.tvCaption);
_DB = this.openOrCreateDatabase("Moon", MODE_PRIVATE, null); // DB open
// "Moon"이라는 데이터베이스 생성
_DB.execSQL("Create Table IF NOT EXISTS TodoList (Title varchar)"); // 테이블 생성
_DB.execSQL("Insert into TodoList (Title) values ('델파이 공부')"); // 레코드 생성
_DB.execSQL("Insert into TodoList (Title) values ('안드로이드 공부')"); // 레코드
// 생성
Cursor _Cursor = _DB.rawQuery("Select Title from TodoList", null); // 커서로 쿼리를 지정
String _Result = "";
if (_Cursor.moveToFirst()) { // 첫번째 위치로 이동
do {
_Result = _Result + _Cursor.getString(0) + "\n"; // 차례로 지정
} while (_Cursor.moveToNext());
}
_tvCaption.setText(_Result); // 결과값 출력
}
private TextView _tvCaption = null;
private SQLiteDatabase _DB = null;
}
접기
우왕 신비한 세계..
이거 따라해볼거라고 모니터에 모기는 붙어있고..
휴지는 가지러 갈려면 부엌에 나가야되고..