MySQL Forums
Forum List  »  Spanish

Re: Problemas con un campo en SQLyog
Posted by: Ruben Urquijo
Date: January 26, 2013 07:16AM

Perdon la demora, Jesus.. Te comento que solucione el inconveniente. LO hice agregandole mas datos a la tabla y ahi quedo bien.

De todas maneras, paso la info de la tabla

CREATE TABLE `composicion_peri_comi` (
`id_cpc` INT(11) NOT NULL AUTO_INCREMENT,
`id_periodo` INT(11) DEFAULT NULL,
`id_comision` INT(11) DEFAULT NULL,
`reunion` TEXT,
`email` TINYTEXT,
`telefono` VARCHAR(100) DEFAULT NULL,
`comentario` LONGTEXT,
PRIMARY KEY (`id_cpc`),
KEY `FK_composicion_peri_comi_periodo` (`id_periodo`),
KEY `FK_composicion_peri_comi` (`id_comision`)
) ENGINE=INNODB AUTO_INCREMENT=290 DEFAULT CHARSET=latin1

El tema era que al ingresar los primeros 7 registros, me guardaba perfectos pero con el mail modificado. Cuando iba agregando los caracteres propios del mail (@, .com, etc).. quedaba bien y guardaba, pero cuando presionabas en el YOG para hacer un refresh de la tabla, ahi se colgaba y como que quedaba refrescando eternamente. Y los datos eran vistos en el phpmyadmin y estaban bien guardados en la base.

Saludos.-

Options: ReplyQuote


Subject
Views
Written By
Posted
1868
January 21, 2013 08:47AM
Re: Problemas con un campo en SQLyog
1086
January 26, 2013 07:16AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.