PIM III - REDES DE COMPUTADORES
Por: Juliana2017 • 10/12/2018 • 1.550 Palavras (7 Páginas) • 629 Visualizações
...
Neste caso em particular com o objetivo de atender a biblioteca comunitária vamos criar um banco de dados para cadastro de livros e usuários.
-
Funcionalidades do Banco de Dados Biblioteca:
-
Cadastro de Livros: Um cadastro de livro deve armazenar informações relativas ao Título do livro, Editora, Edição, Ano de Publicação, Autores, Assunto.
-
Cadastro de usuário: Um cadastro do usuário deve possuir número de matrícula, nome, endereço, telefone e CPF
[pic 3][pic 4]
1.4 Banco de dados
Nome: BDBiblioteca
1.4.1 Script tabela ALUNOS
USE [BDBiblioteca]
GO
/****** Object: Table [dbo].[TBAlunos] Script Date: 12/11/2017 18:05:03 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[TBAlunos](
[coAluno] [int] IDENTITY(1,1) NOT NULL,
[numero_matricula] [nvarchar](255) NULL,
[nome] [nvarchar](255) NULL,
[endereco] [nvarchar](255) NULL,
[telefone] [nvarchar](255) NULL,
[email] [nvarchar](255) NULL,
PRIMARY KEY CLUSTERED
(
[coAluno] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
1.4.2 Script tabela LIVROS
CREATE TABLE [dbo].[TBLivro](
[coLivro] [int] IDENTITY(1,1) NOT NULL,
[titulo_livro] [nvarchar](255) NULL,
[editora] [nvarchar](255) NULL,
[edicao] [nvarchar](255) NULL,
[ano_publicacao] date NULL,
[autores] [nvarchar](255) NULL,
PRIMARY KEY CLUSTERED
(
[coLivro] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
1.4.3 Script tabela EMPRESTIMOS_LIVROS
CREATE TABLE [dbo].[TBEmprestimosLivros](
[coEmprestimoLivro] [int] IDENTITY(1,1) NOT NULL,
[coLivro] [int] NULL,
[coAluno] [int] NULL,
PRIMARY KEY CLUSTERED
(
[coEmprestimoLivro] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
1.4.4 Aplicação JAVA SCRIPT
CLASSE USUARIO
package pacotePrincipal;
public class Usuario {
public Usuario(String nome, String numeroMatricula, String endereco, String telefone, String CPF) {
super();
this.nome = nome;
this.numeroMatricula = numeroMatricula;
this.endereco = endereco;
this.telefone = telefone;
this.CPF = CPF;
}
private String nome, numeroMatricula, endereco, telefone, CPF;
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getNumeroMatricula() {
return numeroMatricula;
}
public void setNumeroMatricula(String numeroMatricula) {
this.numeroMatricula = numeroMatricula;
}
public String getEndereco() {
return endereco;
}
public void setEndereco(String endereco) {
this.endereco = endereco;
}
public String getTelefone() {
return telefone;
}
public void setTelefone(String telefone) {
this.telefone = telefone;
}
public String getCPF() {
...