Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design2
/
2016104137
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김예미
2020-04-21 18:19:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c566266b119d2cf79ae8071b52418bb54844fd80
c566266b
1 parent
ecf3798c
modify database
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
source/DataExtraction/app/src/main/java/com/example/dataextraction/CallLogDataBase.java
source/DataExtraction/app/src/main/java/com/example/dataextraction/ContactDataBase.java
source/DataExtraction/app/src/main/java/com/example/dataextraction/SMSDataBase.java
source/DataExtraction/app/src/main/java/com/example/dataextraction/WifiDataBase.java
source/DataExtraction/app/src/main/java/com/example/dataextraction/CallLogDataBase.java
View file @
c566266
...
...
@@ -13,10 +13,10 @@ public class CallLogDataBase {
public
static
final
String
_TABLENAME0
=
"calllog"
;
public
static
final
String
_CREATE0
=
"create table if not exists "
+
_TABLENAME0
+
"("
+
ID
+
" INTEGER PRIMARY KEY autoincrement, "
+
TYPE
+
" integer
not null ,
"
+
NAME
+
" text
not null
,"
+
NUMBER
+
" text
not null
,"
+
DURATION
+
" integer
not null
,"
+
TYPE
+
" integer
,
"
+
NAME
+
" text,"
+
NUMBER
+
" text,"
+
DURATION
+
" integer,"
+
DATE
+
" text);"
;
}
}
...
...
source/DataExtraction/app/src/main/java/com/example/dataextraction/ContactDataBase.java
View file @
c566266
...
...
@@ -11,7 +11,7 @@ public class ContactDataBase {
public
static
final
String
_TABLENAME0
=
"contact"
;
public
static
final
String
_CREATE0
=
"create table if not exists "
+
_TABLENAME0
+
"("
+
NUMBER
+
" text not null primary key, "
+
NAME
+
" text
not null ,
"
+
NAME
+
" text
,
"
+
PHOTO_ID
+
" integer,"
+
PERSON_ID
+
" integer);"
;
}
...
...
source/DataExtraction/app/src/main/java/com/example/dataextraction/SMSDataBase.java
View file @
c566266
...
...
@@ -16,13 +16,13 @@ public class SMSDataBase {
public
static
final
String
_TABLENAME0
=
"sms"
;
public
static
final
String
_CREATE0
=
"create table if not exists "
+
_TABLENAME0
+
"("
+
MID
+
" integer not null primary key, "
+
TID
+
" integer
not null ,
"
+
TYPE
+
" integer
not null
,"
+
ADDRESS
+
" text
not null ,
"
+
TID
+
" integer
,
"
+
TYPE
+
" integer,"
+
ADDRESS
+
" text
,
"
+
PERSON
+
" text,"
+
CREATOR
+
" text
,
"
+
DATE
+
" text
not null
,"
+
BODY
+
" text
not null
,"
+
CREATOR
+
" text
,
"
+
DATE
+
" text,"
+
BODY
+
" text,"
+
READ
+
" integer);"
;
}
}
...
...
source/DataExtraction/app/src/main/java/com/example/dataextraction/WifiDataBase.java
View file @
c566266
...
...
@@ -11,8 +11,8 @@ public class WifiDataBase {
public
static
final
String
_TABLENAME0
=
"wifi"
;
public
static
final
String
_CREATE0
=
"create table if not exists "
+
_TABLENAME0
+
"("
+
ID
+
" integer not null primary key, "
+
SSID
+
" text
not null ,
"
+
BSSID
+
" text
not null
,"
+
SSID
+
" text
,
"
+
BSSID
+
" text,"
+
WEPKEYS
+
" text);"
;
}
}
...
...
Please
register
or
login
to post a comment