I am trying to create a table called 'SoftwareBugs' but the table becomes 'softwarebugs' when the following query is run on MySQL 3.23.55-nt (Windows). Am I not allowed to use capital letters in a table name?
Code:
CREATE TABLE SoftwareBugs (
ID smallint(5) unsigned NOT NULL auto_increment,
Date varchar(10) default NULL,
Category char(2) default NULL,
Bug text NOT NULL,
Details text,
Version varchar(10) default NULL,
Reporter text,
Solution text,
Severity char(2) default NULL,
Rank smallint(5) unsigned default '0',
PRIMARY KEY (ID),
UNIQUE KEY ID (ID),
KEY ID_2 (ID)
) TYPE=MyISAM;