A JAVA project written in Eclipse Workspace and connected to SQLite Database has created the Catch App application, where users create their own profile and are able to communicate through exchanging messages with others. Every part of the code shows how to do the following:
- Create graphics with Java Swing and Java Awt packages.
- Implement actionPerformed method from ActionListener interface with which the buttons are activated.
- Create an DbConnection object, which succeeds in making a connection with our database in SQLite.
- Create the SQLite queries in order to fill the tables with the user’s data and edit/get the data in order to complete the basic – for the application – procedures such as login, register, send message, show messages and show the user’s profile.
This is an easy way to run Catch App on your computer:
- Download CatchAppApplication.jar from our github repository.
- Install SQLite on your local disk: C. SQLite Download Page
- Create a new folder in your local disk named “sqlite” in which you are going to add the file AppDatabase.db. (C:\sqlite)
- Download sqlite-jdbc-3.40.0.0. jar - sqlite connector with java. SQLite Connector Download
- Double - click on the application and have fun!
TEAM GOLDEN