Ok.. I gave up on caching, and figured out what my problem with the database was.. It didnt like me defining the Engine.
By Changing This:
,PRIMARY KEY(`id`)) ENGINE=MyISAM;";
To This:
,PRIMARY KEY(`id`));";
The problem was resolved.
Last edited by taliesan : 03-03-2005 at 04:28 PM.
|