NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
The reason (Score:1)
(darren)
Re: (Score:1)
I know that's true for MyISAM tables, but not all storage engines store each table in individual files. Is this true for them?
Re:The reason (Score:1)
The Views table has ENGINE=InnoDB, and the primary key is ViewID:
mysql> select count(ViewID) from Views\G
*************************** 1. row ***************************
count(ViewID): 0
1 row in set (0.00 sec)
mysql> select count(VIEWID) from Views\G
*************************** 1. row ***************************
count(VIEWID): 0
1 row in set (0.00 sec)
mysql> select count(ViewID) from VIEWS\G
ERROR 1146 (42S02): Table 'scimitar.VIEWS' doesn't exist
So InnoDB behaves the same way as MyISAM on Linux. I don't know about Windows.
(darren)
Reply to This
Parent