USE patronesj2ee; # # Table structure for table 'consulta' # DROP TABLE IF EXISTS consulta; CREATE TABLE `consulta` ( `id` bigint(20) NOT NULL auto_increment, `consulta` text NOT NULL, `fecha` timestamp NOT NULL, PRIMARY KEY (`id`), KEY `ConsultaIndexById` (`id`) ) TYPE=InnoDB DEFAULT CHARSET=latin1; # # Dumping data for table 'consulta' # INSERT INTO consulta VALUES("1","Se?or, tengo una importante consutla que hacer","2004-07-16 01:30:06"); INSERT INTO consulta VALUES("2","Cuanto cuesta los sw?","2004-07-16 01:44:47"); INSERT INTO consulta VALUES("3","Cuanto cuesta los sw?","2004-07-16 01:52:14"); INSERT INTO consulta VALUES("4","Cuanto debe costar un producto nuevo a la medida?","2004-07-16 01:57:02"); INSERT INTO consulta VALUES("5","Me gustarķa saber cuanto cuesta las molestias","2004-07-17 02:16:09"); INSERT INTO consulta VALUES("6","una consulta nueva","2004-07-17 15:02:56"); # # Table structure for table 'productosoftware' # DROP TABLE IF EXISTS productosoftware; CREATE TABLE `productosoftware` ( `id` bigint(20) NOT NULL auto_increment, `nombre` varchar(50) NOT NULL default '', `descripcion` text NOT NULL, `precio` double NOT NULL default '0', PRIMARY KEY (`id`), KEY `ProductoSoftwareIndexById` (`id`) ) TYPE=InnoDB DEFAULT CHARSET=latin1; # # Dumping data for table 'productosoftware' # INSERT INTO productosoftware VALUES("1","sSires DeskApp 1.1","Sistema de gestion de turismo","50000"); INSERT INTO productosoftware VALUES("2","Template J2EE Pattern","Plantilla de patrones j2ee para proyectos web","40000"); INSERT INTO productosoftware VALUES("4","Struts Example","Plantilla de proyecto web con Struts","40000");