"안드로이드 SQLite DB파일 열기"의 두 판 사이의 차이

23번째 줄: 23번째 줄:
2|9|0|96|0|0|1||
2|9|0|96|0|0|1||
</source>
</source>
:→알람 2건 있으나 비활성화됨<ref>enabled=0</ref>. 월~금<ref>daysofweek=31. 월화수목금 <math>2^0+2^1+2^2+2^3+2^4=1+2+4+8+16=31</math> 08:30, 토일 09:00<ref>daysofweek=96. 토일 <math>2^5+2^6=32+64=96</math></ref></ref>
:→알람 2건 있으나 비활성화됨<ref>enabled=0</ref>. 월~금<ref>daysofweek=31. 월화수목금 <math>2^0+2^1+2^2+2^3+2^4=1+2+4+8+16=31</math></ref> 08:30, 토일 09:00<ref>daysofweek=96. 토일 <math>2^5+2^6=32+64=96</math></ref>
<source lang='dos'>
<source lang='dos'>
sqlite> .exit
sqlite> .exit

2012년 12월 12일 (수) 14:08 판

안드로이드 SQLite DB 열어보기

1 실습

root@android:/data # sqlite3 /data/data/com.android.deskclock/databases/alarms.db
SQLite version 3.7.11 2012-03-20 11:35:50
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
alarms            android_metadata
→ alarms.db 파일에는 alarms 테이블과 android_metadata 테이블이 있다.
sqlite> .schema alarms
.schema alarms
CREATE TABLE alarms (_id INTEGER PRIMARY KEY,hour INTEGER, minutes INTEGER, daysofweek INTEGER,
alarmtime INTEGER, enabled INTEGER, vibrate INTEGER, message TEXT, alert TEXT);
sqlite> select * from alarms;
select * from alarms;
1|8|30|31|0|0|1||
2|9|0|96|0|0|1||
→알람 2건 있으나 비활성화됨[1]. 월~금[2] 08:30, 토일 09:00[3]
sqlite> .exit
root@android:/ # exit

D:\adt-bundle\sdk\platform-tools>

2 같이 보기

3 주석

  1. enabled=0
  2. daysofweek=31. 월화수목금 [math]\displaystyle{ 2^0+2^1+2^2+2^3+2^4=1+2+4+8+16=31 }[/math]
  3. daysofweek=96. 토일 [math]\displaystyle{ 2^5+2^6=32+64=96 }[/math]
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}