반응형

이 게시물은 다음 링크를 참조하여 학습했습니다.

 

[안드로이드 스튜디오 정리#11] DataBase

이 게시물은 다음 링크를 참조하여 학습했습니다. SQLiteDatabase  | Android 개발자  | Android Developers developer.android.com Cursor  | Android 개발자  | Android Developers developer.android.com F..

seminzzang.tistory.com

 

안드로이드 데이터베이스(DB) 프로그래밍 3. [SQLiteDatabase 사용 예제] (Android Database 3)

1. SQLiteDatabase. 안드로이드에서 기본적으로 제공하는 데이터베이스는 SQLite입니다. SQLite는 관계형 데이터베이스이며, 관계형 데이터베이스에 대한 개념과 용어에 대해서는 [안드로이드 데이터베

recipes4dev.tistory.com

이번 시간에는 SQLite를 이용해 db파일을 만들고 테이블의 값을 참조하는 기능을 구현해보았다.

DB를 말로만 들었을 때는 많이 복잡할줄 알았는데, 생각보다 간단해서 기분이 좋았다.

이 예제를 구현하면서, 간단한 DB를 구현하고 값을 꺼내올 수 있었다.

activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    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"
    tools:context=".MainActivity">
 
    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    <LinearLayout
        app:layout_constraintTop_toBottomOf="@+id/tv"
        app:layout_constraintLeft_toLeftOf="parent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#00ff00">
        <TextView
            android:id="@+id/tv1"
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Hello World!" />
        <TextView
            android:id="@+id/tv2"
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Hello World!"/>
        <TextView
            android:id="@+id/tv3"
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Hello World!"/>
        <TextView
            android:id="@+id/tv4"
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Hello World!"/>
    </LinearLayout>
 
</androidx.constraintlayout.widget.ConstraintLayout>
cs

MainActivity.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.example.dbexample;
 
import androidx.appcompat.app.AppCompatActivity;
 
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.os.Bundle;
import android.widget.TextView;
 
import java.io.File;
 
public class MainActivity extends AppCompatActivity {
 
    private TextView tv;
    private TextView tv1;
    private TextView tv2;
    private TextView tv3;
    private TextView tv4;
 
    SQLiteDatabase sqliteDB;
 
    int i = 0;
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        tv = findViewById(R.id.tv);
        tv1 = findViewById(R.id.tv1);
        tv2 = findViewById(R.id.tv2);
        tv3 = findViewById(R.id.tv3);
        tv4 = findViewById(R.id.tv4);
 
        sqliteDB = init_DB();
 
        init_tables();
        save_values();
        save_values();
        save_values();
        save_values();
        load_values();
    }
 
    private SQLiteDatabase init_DB(){
        SQLiteDatabase db = null;
 
        File file = new File(getFilesDir(), "contact.db");
 
        System.out.println("PATH : " + file.toString());
        try{
            db = SQLiteDatabase.openOrCreateDatabase(file, null);
        }catch (SQLiteException e){
            e.printStackTrace();
        }
        if (db==null){
            System.out.println("DB creation failed. " + file.getAbsolutePath());
        }
 
        return db;
    }
 
    private void init_tables(){
        if(sqliteDB != null){
            sqliteDB.execSQL("DELETE FROM CONTACT_T");
            String sqlCreateTbl = "CREATE TABLE IF NOT EXISTS CONTACT_T (" +
                    "NUM "        +"INTEGER NOT NULL," +
                    "NAME "      +"TEXT" +
                    ")";
            System.out.println(sqlCreateTbl);
 
            sqliteDB.execSQL(sqlCreateTbl);
        }
    }
 
    private void save_values(){
        String sqlInsert = "INSERT INTO CONTACT_T" +
                "(NUM, NAME) VALUES (" +
                Integer.toString(i) + "," + "'name" + Integer.toString(i) + "'" + ")";
        System.out.println(sqlInsert);
        sqliteDB.execSQL((sqlInsert));
        i++;
    }
 
    private void load_values(){
        if(sqliteDB != null){
            Cursor cursor = null;
            cursor = sqliteDB.rawQuery("SELECT * FROM CONTACT_T"null);
            String str = "", str2 = "";
 
            tv = (TextView)findViewById(R.id.tv);
            tv1 = (TextView)findViewById(R.id.tv1);
            tv2 = (TextView)findViewById(R.id.tv2);
            tv3 = (TextView)findViewById(R.id.tv3);
            tv4 = (TextView)findViewById(R.id.tv4);
 
            tv.setText( Integer.toString(cursor.getCount()) );
            while(cursor.moveToNext()) {
                System.out.println(cursor.getInt(0+ " " + cursor.getString(1));
                str += cursor.getInt(0+ "\n";
                str2 += cursor.getString(1+ "\n";
            }
 
            tv1.setText( str );
            tv2.setText( str2 );
            tv3.setText( str );
            tv4.setText( str2 );
        }
    }
}
cs

 

거의 모든 내용이 다 [안드로이드 스튜디오#11] DataBase에 있지만, File에 대한 내용은 따로 정리를 하지 않았다.

MainActivity.java에 File file = new File(getFilesDir(), "contact.db"); 이라는 내용이 있는데, 

간단하게 정리하자면 File Class는 말그대로 사용자가 사용할 파일을 의미하고,

getFilesDir()는 파일을 저장하는 경로를 의미한다. 그 뒤에 "contact.db"는 파일 명을 의미한다.

File Class에 관한 내용은 나중에 따로 정리해서 글로 작성해야겠다.

이 프로그램은 Database에 int 값 하나, String 값 하나씩 저장하는 save_values()를 4번 실행해서 4개씩의 값이 저장되어있는 테이블(Table)을 만든다.

그리고 TextView를 통해 그 값을 출력하는데, String값에 각 값 + "\n"을 더해서 개행형태로 표현했다.

 

DatabaseExample 출력화면

Cursor 객체를 사용하면서 Cursor객체를 통해 행과 열값을 지정하여 해당 행, 열의 데이터를 참조할 수 없을까 하는 궁금증이 있었는데, 지금까지 공부한 범위안에서는 그 기능을 찾을 수 없었다.

대신 "\n"을 이용해서 문자열에 개행형태로 저장하고 문자열을 슬라이싱 하면 여러개의 값중에 하나의 값을 꺼내올 수 있을 것 같다.

또는 SELECT문에서 조건에 좀더 제약을 걸어 애초에 SELECT문에서 하나의 Row만 참조하는것도 좋을 것 같다.

반응형

+ Recent posts