package
0.0.0-20240823124547-379a39abf8bd
Repository: https://github.com/sambasivareddy-ch/notebook_cli.git
Documentation: pkg.go.dev

# 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 */.