# Functions
CreateDatabase() - Create a new database file called sqlite-database.db within the same project
- We are actually mimicing the Database, we don't have server now.
CreateTable() - Creates a NoteBooks(title primary key, notes, created_on) table in give sqlite-database.db file
*/.
DeleteNotesWithGivenTitle() - Deletes a row/notes with the selected title
*/.
GetAllTitlesFromNoteBooksTable() - Returns all the titles in the given NoteBooks table
*/.
InsertIntoNotebookTable() - Inserts the passed title, notes, created_on in the table NoteBooks
*/.
ShowNotes() - Show all the tuples/rows in the notebooks table
*/.
UpdateNotesWithGivenTitle() - Updates a row/notes with given newNotes text based on selected title
*/.