Quote:
Originally Posted by Hooper
I'm having the same database error I'm reading about in here. Anyone know how to resolve it with vb3.07?
Thanks
|
You mean the table creation at installation? here is the command to create the table. Just run this in a sql window:
Code:
'CREATE TABLE geek_autolink (
`id` int(11) NOT NULL auto_increment,
`text` varchar(25) NOT NULL default '',
`link` varchar(250) NOT NULL default '',
`ignorethread` int(11) NOT NULL default '0',
PRIMARY KEY (`id`);
HTH's