top of page
Tourney_create2.PNG

Java-DB

A test project for connecting java to a sql db

This was a quick project that involved an MVC implementation that provided a GUI interface that used Java to connect to a SQL db.

Java2.PNG

Model Connection

I was responsible for writing the portion of the code that connected and updated the database. I used PreparedStatements to avoid chances of malicious sql injections and cached string variables matching the database keys to have one single point of failure. (used across Add,Update, and Delete)

See the Code

bottom of page