Thanks,
Is it because of me, that you created the thread?
regards Thomas
Is it because of me, that you created the thread?
regards Thomas
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuCREATE TABLE IF NOT EXISTS `jtsdns` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`hostname` varchar(250) CHARACTER SET latin1 NOT NULL,
`ipaddress` varchar(250) CHARACTER SET latin1 NOT NULL,
`enabled` tinyint(1) NOT NULL,
`lastused` bigint(20) NOT NULL DEFAULT '0',
`usecount` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `hostname` (`hostname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
Page created in 0.041 seconds with 17 queries.