Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcos-vcs/crudoperationsexamplewithjdbc
Example of using JDBC in CRUD operations in CLI interface
https://github.com/marcos-vcs/crudoperationsexamplewithjdbc
crud database hibernate java jdbc mysql
Last synced: 12 days ago
JSON representation
Example of using JDBC in CRUD operations in CLI interface
- Host: GitHub
- URL: https://github.com/marcos-vcs/crudoperationsexamplewithjdbc
- Owner: marcos-vcs
- Created: 2021-05-31T19:19:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-31T20:38:20.000Z (over 3 years ago)
- Last Synced: 2024-11-07T05:42:30.123Z (2 months ago)
- Topics: crud, database, hibernate, java, jdbc, mysql
- Language: Java
- Homepage:
- Size: 922 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE - MIT.txt
Awesome Lists containing this project
README
## Simple example of using JDBC 🙌
![JDBC image representation](http://www.oracle.com/technetwork/database/application-development/jdbc/jdbc-2-4389800.png)
---
**In this example, the use of CRUD operations in the creation of a stock management system for a pharmacy is demonstrated.**---
> In this example, it is seen the use of JDBC (Java DataBase
> Connectivity) in a CRUD (create, read, update, delete), using MySql
> database management system. With some changes this same code can be
> used in any case of use with relational database.
---
> This example was developed using CLI (comand line interface). But I
> aimed to keep the code as little tied to the CLI as possible, being
> possible to reuse this same algorithm in a use case with graphical
> interfaces applying observer project pattern and Java Swing or JavaFX.
---
**Were used in this project**
- MySql in localhost
- MySql driver version 5.1.48
- Eclipse IDE 2021-03
- JDK 13