https://github.com/zied-snoussi/java_crud_mysql_jdbc
This project demonstrates basic CRUD (Create, Read, Update, Delete) operations using JDBC (Java Database Connectivity) in a Java application.
https://github.com/zied-snoussi/java_crud_mysql_jdbc
java mysql
Last synced: about 1 year ago
JSON representation
This project demonstrates basic CRUD (Create, Read, Update, Delete) operations using JDBC (Java Database Connectivity) in a Java application.
- Host: GitHub
- URL: https://github.com/zied-snoussi/java_crud_mysql_jdbc
- Owner: zied-snoussi
- Created: 2024-05-25T23:30:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T21:14:54.000Z (about 2 years ago)
- Last Synced: 2025-03-26T02:42:34.425Z (over 1 year ago)
- Topics: java, mysql
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JDBC CRUD Java Native Project
This project demonstrates basic CRUD (Create, Read, Update, Delete) operations using JDBC (Java Database Connectivity) in a Java application.
## Requirements
- Java Development Kit (JDK) 8 or higher
- A relational database (e.g., MySQL, PostgreSQL)
- JDBC driver for your database
**Clone the repository:**
```sh
git clone https://github.com/zied-snoussi/java_crud_mysql_jdbc.git
cd java_crud_mysql_jdbc
```
## Usage
- **Create:** Add new records.
- **Read:** Retrieve records.
- **Update:** Modify records.
- **Delete:** Remove records.