On Wed, Dec 17, 2008 at 1:40 PM, Brian Moon <[email protected]> wrote: > For Phorum, I would not. In the current MySQL world, I would like to have > people that have InnoDB use it. So, the create statements show InnoDB. > But, if it is not on the server, well, this would be bad. It helps that > MySQL falls back to the default table type. > > Make sense? Any solutions come to mind for this case?
something like 'CREATE TABLE ... ENGINE = INNODB OR MYISAM' might be nice. or 'CREATE TABLE ... ENGINE = INNODB OR DEFAULT'. or maybe a way to declare whether you need a certain type of engine, but aren't particular about which one. 'CREATE TABLE .. ENGINE = TRANSACTIONAL' jim _______________________________________________ Mailing list: https://launchpad.net/~drizzle-discuss Post to : [email protected] Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp

