forums › forums › SQLyog › Using SQLyog › uppercasing table names
- This topic is empty.
-
AuthorPosts
-
-
May 21, 2003 at 9:06 pm #7955phasewsMember
Is there a setting somewhere that I am missing. I found out how to uppercase a SQL statements ctrl+shft+u. But, when I create a table and enter an uppercase table name upon clicking the 'CREATE TABLE' button, it turns the table name into lowercase… That's lame. So, I have to rename the [TABLE_NAME].frm file on the hard drive and then refresh the view. Am i clueless or is this an intentional feature?
-
May 21, 2003 at 9:23 pm #14330CalEvansMember
If I enter:
Code:create table UPPERCASE_TEST (
`testID` bigint(22) NOT NULL default '0') Type=InnoDB;in the SQLyog window and then press F5, it creates a table named UPPERCASE_TEST for me. WHen I refresh the list of tables, it's there.
What version of SQLyog and MySQL?
=C=
-
May 21, 2003 at 9:28 pm #14331phasewsMember
I'm an idiot. I just installed MySQL 4.0.13 on win2k and forgot to set the lower_case_table_names variable ot 'OFF'
-
-
AuthorPosts
- You must be logged in to reply to this topic.