반응형
https://developer.android.com/training/data-storage/sqlite?hl=ko
가이드 문서에서는 조금 다른 방법으로 안내한다
activity_main
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="데이터베이스 만들기" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="테이블 만들기" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="데이터 조회하기" />
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp" />
</LinearLayout>
</ScrollView>
</LinearLayout>
DatabaseHelper.java
package com.example.a61_sample_database_sqliteopenhelper;
import android.content.Context;
import android.database.DatabaseErrorHandler;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public class DatabaseHelper extends SQLiteOpenHelper {
public static String NAME = "testDB";
public static int VERSION = 1;
public DatabaseHelper(Context context) {
// 첫번재 파라미터 - Context 객체, 액티비티 안에서 만들 경우 this로 지정 가능
// 두번째 파라미터 - 데이터베이스의 이름
// 세번째 파라미터 - 데이터 조회 시에 반환하는 커서를 만들어 낼 CoursorFactory
// 네번째 파라미터 - 정수 타입의 버전 정보, 데이터베이스 업그레이드를 위해 사용하며,
// 기존에 생성되어 있는 데이터베이스의 버전 정보와 다르게 지정하여, 데이터베이스의 스키마나 데이터를 바꿀 수 있다
super(context, NAME, null, VERSION);
}
public DatabaseHelper(Context context, int VERSION) {
super(context, NAME, null, VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
println("onCreate 호출");
String sql = "create table if not exists testTABLE (_id integer primary key autoincrement, name text, age integer, mobile text)";
// onCreate 메소드 안에서 sql문 실행
db.execSQL(sql);
}
@Override
public void onOpen(SQLiteDatabase db) {
println("onOpen 호출");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
println("onUpdate 호출 : " + oldVersion + " -> " + newVersion);
if (newVersion > oldVersion) {
db.execSQL("drop table if exists testTABLE");
}
}
public void println(String data) {
Log.d("DatabaseHelper", data);
}
}
MainActivity
package com.example.a61_sample_database_sqliteopenhelper;
import androidx.appcompat.app.AppCompatActivity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
EditText editText;
EditText editText2;
TextView textView;
SQLiteDatabase database;
String tableName;
DatabaseHelper dbHelper;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
editText2 = findViewById(R.id.editText2);
textView = findViewById(R.id.textView);
Button button = findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String databaseName = editText.getText().toString();
createDatabase(databaseName);
}
});
Button button2 = findViewById(R.id.button2);
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
tableName = editText2.getText().toString();
createTable(tableName);
insertRecord();
}
});
Button button3 = findViewById(R.id.button3);
button3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
executeQuery();
}
});
}
public void executeQuery() {
println("executeQuery 호출됨");
// sql 실행하고 Coursor 객체 반환 받기
// rawQuery는 결과 값을 Cursor 객체로 받을 수 있는 sql 실행 방법
Cursor cursor = database.rawQuery("select _id, name, age, mobile from testTABLE", null);
int recordCount = cursor.getCount();
println("레코드 개수 : " + recordCount);
for (int i = 0; i < recordCount; i++) {
// cursor 객체는 moveToNext 메소드를 이용해야 레코드에 접근한다
cursor.moveToNext();
int id = cursor.getInt(0);
String name = cursor.getString(1);
int age = cursor.getInt(2);
String mobile = cursor.getString(3);
println("레코드#" + i + " : " + id + ", " + name + ", " + age + ", " + mobile);
}
cursor.close();
}
// private void createDatabase(String databaseName) {
// println("createDatabase 호출됨");
//
// database = openOrCreateDatabase(databaseName, MODE_PRIVATE, null);
//
// println("데이터베이스 생성함 : " + databaseName);
// }
private void createDatabase(String databaseName) {
println("createDatabase 호출됨");
dbHelper = new DatabaseHelper(this);
// dbHelper = new DatabaseHelper(this, 3);
database = dbHelper.getWritableDatabase();
println("데이터베이스 생성함");
}
private void createTable(String tableName) {
println("createTable 호출됨");
if (database == null) {
println("데이터베이스를 먼저 생성하세요");
return;
}
// execSQL 메소드는 안드로이드 SQLite 객체에서 가장 중요한 메소드이다
// 데이터베이스가 만들어지고 나면, execSQL 메소드는 SQL문을 실행할때 사용한다
// 테이블을 만드는 것뿐만 아니라 레코드 추가처럼 표준 SQL을 사용하는 여러가지 데이터 처리가 가능하다
//
// id의 경우, 안드로이드에서는 앞에 '_'를 붙여 '_id'로 만드는 방법을 권장한다
database.execSQL("create table if not exists " + tableName + " (_id integer PRIMARY KEY autoincrement, name text, age integer, mobile text)");
println("테이블 생성함 : " + tableName);
}
private void insertRecord() {
println("insertRecord 호출됨");
if (database == null) {
println("데이터베이스를 먼저 생성하세요");
return;
}
if (tableName == null) {
println("테이블을 먼저 생성하세요");
}
database.execSQL("insert into " + tableName + " (name, age, mobile) values ('John', 20, '010-1000-1000')");
println("레코드 추가함");
}
private void println(String data) {
textView.append(data + "\n");
}
}
반응형
'안드로이드' 카테고리의 다른 글
내용 제공자 사용하기, 앨범 조회 (0) | 2021.11.01 |
---|---|
내용 제공자 (0) | 2021.10.30 |
스키마 변경 - SQLiteOpenHelper 클래스 (0) | 2021.10.29 |
Database Inspector (0) | 2021.10.29 |
안드로이드 SQLite (0) | 2021.10.29 |