Unsupported Screen Size: The viewport size is too small for the theme to render properly.

Object Browser

forums forums SQLyog SQLyog: Bugs / Feature Requests Object Browser

  • This topic is empty.
Viewing 4 reply threads
  • Author
    Posts
    • #8148
      Morkai
      Member

      Please would it be possible for the object browser to keep character casing on a tablename.

      tblCriminalPartyCaseHistory is a lot easier to read than

      tblcriminalpartycasehistory

      I am writing a corporate intranet and I will be using any number of prefixes on tables so that I can nicely organise them. It's so much easier to read when they are camel or hungarian cased

      Thanks again

      Victoria

    • #14841
      Ritesh
      Member

      SQLyog never modifies the case of object names. This is what is returned by MySQL. I guess your MySQL is running on Win-x- server.

    • #14842
      Ritesh
      Member

      Here is a sample from the MySQL command line utility. I ran some queries on MySQL 4.1.1-alpha on Win2K server.

      Code:
      mysql> create table TableName1 ( a char(1) );
      Query OK, 0 rows affected (0.00 sec)

      mysql> show tables from ritesh;
      +——————+
      | Tables_in_ritesh |
      +——————+
      | tablename1       |
      +——————+
      1 row in set (0.00 sec)

    • #14843
      Morkai
      Member

      Your absolutely right. I'm running on Win2k server

      Ahh well, I'll go pester the folks over there instead 🙂

      In the mean time thanks for a great program, I certainly think its worth every penny 🙂

      Regards

      Victoria

    • #14844
      Shadow
      Member

      Setting lower_case_table_names variable to OFF (default is ON) should solve the problem.

Viewing 4 reply threads
  • You must be logged in to reply to this topic.