top of page
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.
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)
bottom of page