README
###SQL
CREATE TABLE `Livros` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(45) DEFAULT NULL,
`author` varchar(45) DEFAULT NULL,
`gender` varchar(45) DEFAULT NULL,
`year` int(11) DEFAULT NULL,
`isRead` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1
INSERT INTO `Livros` VALUES (1,'zezin','Tolkien','Aventura',1950,1),(2,'Clube da Luta','Chuck ','Aventura',1998,1),(3,'Harry Potter','Rowling','Aventura',2001,0),(4,'Don Quixote ','Miguel de Cervantes ','Aventura',1900,0);
https://github.com/lesimoes/TrabalhoRefactor/blob/master/src/Enum/EDataBase.java