diff --git a/.gitignore b/.gitignore index fed5558..2843c58 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ tomcat.5000 *.iml .DS_Store + +*.db3 diff --git a/Makefile b/Makefile index 7f816f1..a239396 100644 --- a/Makefile +++ b/Makefile @@ -15,5 +15,9 @@ $(DB_NAME): $(SQL_SCRIPT) clean: rm -f $(DB_NAME) +dumptables: + sqlite3 $(DB_NAME) "SELECT * FROM Respondents;" + sqlite3 $(DB_NAME) "SELECT * FROM Answers;" + # Phony targets .PHONY: all init_db clean diff --git a/lab.db3 b/lab.db3 deleted file mode 100644 index 2592559..0000000 Binary files a/lab.db3 and /dev/null differ