Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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