create/alter table with type=innodb seems to work, no error messages, but "show create table" reports the type is myIsam yet.
I'll be discarding the mysql coming along with the distro and download -max version from mysql.
Thank you for the help
Quote:
Originally posted by vanekl
You shouldn't have to mess with a configuration file at all
to use innodb tables as long as you are using any 4.X+ version
of MySQL (which you are).
The way you create an innodb table is:
create table <table_name> ( blah blah blah ) TYPE=INNODB;
Then do a 'show tables;' and you'll see that the table has
been created.
|