Dear gurus,

does someone have background information on the following problem ("How
does MySQL do this?"):

CREATE TABLE myisamFixed (col VARCHAR(10)) TYPE=MyISAM ROW_FORMAT=FIXED;
CREATE TABLE myisamDynamic (col CHAR(10))  TYPE=MyISAM
ROW_FORMAT=DYNAMIC;

SHOW TABLE STATUS LIKE 'myisam%';
+----------------------+--------+------------+
| Name                 | Type   | Row_format |
+----------------------+--------+------------+
| myisamDynamic        | MyISAM | Dynamic    |
| myisamFixed          | MyISAM | Fixed      |
+----------------------+--------+------------+

Regards,
--
  Stefan Hinz <[EMAIL PROTECTED]>
  Geschäftsführer / CEO iConnect GmbH <http://iConnect.de>
  Heesestr. 6, 12169 Berlin (Germany)
  Tel: +49 30 7970948-0  Fax: +49 30 7970948-3


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to