DB

[SQLite] 데이터 수정하기(UPDATE )

SQLiteDatabase 클래스를 사용하여 데이터베이스 초기화를 진행합니다.

String databasePath = Environment.getDataDirectory() +"/data/패키지명/databases/mystory.db"; // 데이터베이스 파일명을 설정합니다.
//데이터 베이스 초기화 SQLiteDatabase database = this.openOrCreateDatabase(databasePath, Context.MODE_PRIVATE, null);Z updateTbDayStory(database, 1, "2018-11-15", "하이", 21);

UPDATE문을 사용하여 데이터를 수정합니다.

public static void updateTbDayStory(SQLiteDatabase database, int gubunType, String today, String content, int eventID) {
if (database != null) {
try {
String currentDateString = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Calendar calendar = Calendar.getInstance();
calendar.setTime(simpleDateFormat.parse(currentDateString));

today = today + " " + calendar.get(Calendar.HOUR) + ":" + calendar.get(Calendar.MINUTE) + ":" + calendar.get(Calendar.SECOND);
//Log.d(DataBaseUtil.class.getSimpleName(), "=========== today: " + today);
DateFormat df1 = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date dt = df1.parse(today);

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String eventDate = sdf.format(dt);
ULog.d(DataBaseUtil.class.getSimpleName(), "=========== eventDate: " + eventDate + " gubunType:" + gubunType + " content:" + content);
database.execSQL("UPDATE TB_STORY "
+ "SET "
+ " _event_type =" + gubunType + ","
+ " _contents =" + "'" + content + "'"
//+ "'" + DateUtil.getCurrentDate("yyyy-MM-dd HH:mm:ss") + "',"
+ " WHERE event_id =" + eventID
);
} catch (Exception e) {
e.printStackTrace();
}
}
}

참고사항 : 
SQLite는 파일기반의 DBMS입니다. 그리고 오픈소스입니다.

SQLite 공식사이트
https://www.sqlite.org/index.html

SQLite 나무위키 정보
https://namu.wiki/w/SQLite

좀더 자세한 정보가 필요하시면 아래 사이트를 참고하세요. 해외사이트인데 정리가 잘 되어 있네요
https://www.techonthenet.com/sqlite/index.php
https://www.tutorialspoint.com/sqlite/

기초 지식이 필요하다면 아래 사이트를 참고하세요
http://gywn.net/2013/08/let-me-intorduce-sqlite/

SQLite Browser : DB파일을 GUI로 보는 툴입니다.
https://sqlitebrowser.org/

오픈소스로 진행 되는건가? 프로그램 코드가 GitHub에 있습니다.
https://github.com/sqlitebrowser/sqlitebrowser

Leave a Reply

error: Content is protected !!