https://github.com/ruan-miguel/dac_atividade_1
https://github.com/ruan-miguel/dac_atividade_1
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruan-miguel/dac_atividade_1
- Owner: Ruan-Miguel
- Created: 2020-03-16T17:51:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-18T08:58:28.000Z (over 5 years ago)
- Last Synced: 2025-02-15T12:41:24.770Z (4 months ago)
- Language: Java
- Size: 204 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dac_atividade_1
Esse projeto faz o CRUD de uma classe "Pessoa"
## Script de criação das tabelas
```
DROP TABLE Pessoa;CREATE TABLE Pessoa(
id INT,
nome VARCHAR(100) NOT NULL,
salario FLOAT(2),
dataNascimento DATE,
PRIMARY KEY (id)
);
```
## Executar o projeto
## Executar os testes
