Java Database Interface
University Projects #Databases
NOTE

Click this link to view the code on GitHub.

Overview#

A Java application demonstrating database connectivity using JDBC (Java Database Connectivity). Implements CRUD operations with prepared statements, connection pooling, and proper resource management.

Key Concepts#

  • Established database connections with JDBC drivers
  • Implemented CRUD operations (Create, Read, Update, Delete)
  • Used prepared statements for SQL injection prevention
  • Managed connection lifecycle with try-with-resources
  • Built query interface for user interaction

Technologies#

Java, JDBC, SQL, Prepared Statements, Connection Management

← Back to Projects