<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to DataBase</title><link>https://sourceforge.net/p/simplelibrary/wiki/DataBase/</link><description>Recent changes to DataBase</description><atom:link href="https://sourceforge.net/p/simplelibrary/wiki/DataBase/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 22 Jan 2012 16:11:25 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/simplelibrary/wiki/DataBase/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage DataBase modified by Juan</title><link>https://sourceforge.net/p/simplelibrary/wiki/DataBase/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Juan</dc:creator><pubDate>Sun, 22 Jan 2012 16:11:25 -0000</pubDate><guid>https://sourceforge.net70a201801b53c68d1596a5daae4562fea112a4ed</guid></item><item><title>WikiPage DataBase modified by Juan</title><link>https://sourceforge.net/p/simplelibrary/wiki/DataBase/</link><description>To make the program work, is necessary to create and run a SQL database, with the following commands:
(Sorry about this way to do it)


    create table `Biblioteca`.Libro
    (
    	id INT not null primary key,
    	titulo VARCHAR(50) not null,
    	nombreAutor VARCHAR(50) default 'Desconocido' not null,
    	apellidoAutor VARCHAR(50),
    	isbn VARCHAR(25),
    	editorial VARCHAR(50) default 'Desconocida' not null,
    	copias INT default 1 not null,
    	prestados INT default 0,
    	tomo INT,
    	tematica VARCHAR(50) not null
    )
    
    
    
    create table `Biblioteca`.Prestamo
    (
    	idPrestatario VARCHAR(20) not null primary key,
    	idLibro INT not null primary key,
    	fechaInicio DATE not null primary key,
    	fechaFin DATE not null
    )
    
    create table `Biblioteca`.Prestatario
    (
    	cedula VARCHAR(20) not null primary key,
    	nombre VARCHAR(50) not null,
    	apellido VARCHAR(50) not null,
    	telefono VARCHAR(10) not null,
    	telefono2 VARCHAR(10),
    	fNacimiento DATE not null,
    	Sexo CHAR(1) not null
    )
    
    create table `Biblioteca`.Usuario
    (
    	nombre VARCHAR(50) not null,
    	apellido VARCHAR(50) not null,
    	nick VARCHAR(20) not null primary key,
    	pass VARCHAR(20) not null
    )
           

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\//////////////////////////////////////////////
By running this database the program would work with no problems</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Juan</dc:creator><pubDate>Sun, 22 Jan 2012 16:00:03 -0000</pubDate><guid>https://sourceforge.net8757361bf042ebccf1bb6df617b493d892e098ca</guid></item></channel></rss>