hi,
I have already done such things and worked properly but now i can't create a table. Here's an example:
CREATE TABLE animals(
id MEDIUMINT NOT NULL AUTO_INCREMENT ,
name CHAR( 30 ) NOT NULL ,
PRIMARY KEY ( id )
)
It causes: #1289 - The 'InnoDB' feature is disabled; you need MySQL built with 'InnoDB' to have it working
How do i create a MyISAM Table?