Quote:
|
Originally Posted by <?Wille?>
hi.. im trying to write a forum script just so that i maby would learn something new and so that i would have one ready when some client ask for it..
no problems so far exept that when i take table names they are all with small letters.. i would like to replace the first letter with same but BIG version of it..
i mean the first letter.. not spaces ond/or numbers
anyone have the code snipped ready?
thx 4 all help
Wille
|
Hi !
Either I just dont know the code you are talking about or I think there is no code for changing the first letter BIG, because the MySQL Server will rename the first letter of your tablename even if you create a new table. If you try
CREATE TABLE `Errorhandling` (
`ID` int(11) NOT NULL auto_increment,
`errno` varchar(100) NOT NULL default '0',
`errtext` varchar(255) NOT NULL default '',
PRIMARY KEY (`ID`)
) TYPE=MyISAM;
the MySQL Server will save it as `errorhandling`...
:?