Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/10/2008, 12:21
Avatar de kopfnickend
kopfnickend
 
Fecha de Ingreso: febrero-2008
Ubicación: Bueno Aires (provincia)
Mensajes: 43
Antigüedad: 16 años, 2 meses
Puntos: 2
Respuesta: Problemas con INET_ATON / INET_NTOA

Problema solucionado: Hay una opcion que no habia visto, se llama BIGINT(20). Ahora funciona bien. De todas formas muchas gracias. Les dejo la estructura de la tabla por si le hace falta a alguien.

CREATE TABLE `tblfirmas` (
`id` int(11) unsigned NOT NULL auto_increment,
`id_archivos` int(11) unsigned NOT NULL,
`id_cuenta` int(10) unsigned NOT NULL,
`id_user` int(10) unsigned NOT NULL,
`comentario` text NOT NULL,
`fecha` timestamp NOT NULL default CURRENT_TIMESTAMP,
`privado` tinyint(1) NOT NULL default '0',
`Ip` bigint(20) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `id_cuenta` (`id_cuenta`),
KEY `id_user` (`id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;