Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryancasf/crud-java-bd
Employee Management System.
https://github.com/ryancasf/crud-java-bd
ant java-dao mysql
Last synced: 3 days ago
JSON representation
Employee Management System.
- Host: GitHub
- URL: https://github.com/ryancasf/crud-java-bd
- Owner: RyanCasf
- Created: 2021-02-05T19:46:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-16T12:56:49.000Z (5 months ago)
- Last Synced: 2024-06-16T14:06:29.350Z (5 months ago)
- Topics: ant, java-dao, mysql
- Language: Java
- Homepage:
- Size: 10.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CRUD - Java
Construção de projeto CRUD em Java com conexão em MySql. Com interface, GUI, por JFrame.
Attention
localhost:3307
driverName = "com.mysql.jdbc.Driver"
useTimezone=true&serverTimezone=UTC&useSSL=false"
CREATE DATABASE Empresa;create table Funcionarios
(
id int auto_increment,
nome_funcionario varchar(64),
salario_funcionario float,
departamento_funcionario varchar(32),
primary key(id)
);Densenvolvimento