This repository has been archived by the owner on Jul 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
462 changed files
with
561,270 additions
and
14,890 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
CREATE TABLE IF NOT EXISTS loginD(" + | ||
"username VARCHAR2(20) NOT NULL PRIMARY KEY," + | ||
"password VARCHAR2(100) NOT NULL," + | ||
"lastLogged DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP," + | ||
"UNIQUE (username)" + | ||
"); | ||
CREATE TABLE IF NOT EXISTS personalD(" + | ||
"username VARCHAR2(20) NOT NULL," + | ||
"fname VARCHAR2(20) NOT NULL," + | ||
"lname VARCHAR2(20) NOT NULL," + | ||
"dob DATE NOT NULL," + | ||
"email VARCHAR2(100) NOT NULL," + | ||
"FOREIGN KEY (username) REFERENCES loginD (username)" + | ||
"); | ||
CREATE TABLE IF NOT EXISTS textEntries(" + | ||
"uID INTEGER PRIMARY KEY AUTOINCREMENT," + | ||
"username VARCHAR2(20) NOT NULL," + | ||
"logged DATE NOT NULL," + | ||
"filename VARCHAR2(10) NOT NULL," + | ||
"UNIQUE (uID)," + | ||
"FOREIGN KEY (username) REFERENCES loginD (username)" + | ||
"); | ||
CREATE TABLE IF NOT EXISTS audioEntries(" + | ||
"uID INTEGER PRIMARY KEY AUTOINCREMENT," + | ||
"username VARCHAR2(20) NOT NULL," + | ||
"logged DATE NOT NULL," + | ||
"filename VARCHAR2(10) NOT NULL," + | ||
"UNIQUE (uID)," + | ||
"FOREIGN KEY (username) REFERENCES loginD (username)" + | ||
"); | ||
CREATE TABLE IF NOT EXISTS videoEntries(" + | ||
"uID INTEGER PRIMARY KEY AUTOINCREMENT," + | ||
"username VARCHAR2(20) NOT NULL," + | ||
"logged DATE NOT NULL," + | ||
"filename VARCHAR2(10) NOT NULL," + | ||
"UNIQUE (uID)," + | ||
"FOREIGN KEY (username) REFERENCES loginD (username)" + | ||
"); |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
MIT License | ||
|
||
Copyright (c) 2015 Basura Ratnayake ([email protected]) | ||
Copyright (c) 2019 Basura Ratnayake. All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
# Electronic Diary [MageDinaPotha] | ||
# MageDinaPotha | ||
|
||
The scenario for the project is an electronic day | ||
book for individuals to record their day today | ||
activities, unlike an actual physical day book | ||
people have the ability to record a video, audio or | ||
a text entry about their day and also the entries | ||
they store are protected by a user defined password. | ||
An electronic diary that helps record your life events in video, audio or in textual format. All diary entries are highly encrypted to ensure your privacy. | ||
|
||
A Project of my Software Engineering | ||
Degree Programme at NSBM. | ||
|
||
Module: SOFT225SL Software Engineering for the Internet Using Java | ||
|
||
Batch: BSE 14.2 | ||
|
||
## Tech Stack | ||
|
||
Java, SQLite, Xuggler, sarxos/webcam-capture | ||
Copyright (c) 2019 Basura Ratnayake. All rights reserved. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.