Mailing List
Home
Forum Home
MySQL General - General MySQL discussion
MySQL++ - Programming with the C++ API to MySQL
MaxDB - Everything about MaxDB, formerly known as SAP DB
ODBC - ODBC with the MySQL Connector/ODBC driver
MySQL on Win32 - Runing MySQL on Windows 9x/Me/NT/2000/XP
Java Help - Mostly related to the MySQL Connector/J driver
Perl - Perl support for MySQL with DBI and DBD::mysql
GUI - MySQL GUI Tools
Announcement
Subjects
mysql openssl Question
ERROR 1045: Access denied for user: 'root@localhost ' (Using
password: NO)
Update one field with more fields from another table
Getting Identity after INSERT
ERROR 2002: Can 't connect to local MySQL server through socket
mysql test 4 1 fails with the gis test
MySQL Cluster Software
Downgrade Mysql from 4 to 3 23
Mysql 4 0 Oracle Stored Procedure Trigger Conversion
Can 't access mysql after kernel upgrade
Executing MySQL Commands From Within C Program
Comparing and writing out BLOBS
Preventing Duplicate Entries
FULLTEXT query format question
Strange behavior, Table Level Permission
Does the binary log enabling affect the MySQL performances?
mysql:it 's a db not a dbms how it 's possible?!
mysql have same function mthod as Oracle decode()
 
SQL Studio and lowercase name of objects

SQL Studio and lowercase name of objects

2007-06-21       - By Lukasz Misztal

 Back
Tomas,

thanks for help, for me seems that SQL Studio is also vunerable for
lowercase names. It is frequent for getting definition from exist objects.

Can i also report following bugs in SQL Studio? If not, where can i do
this?

For example:

//-- ---- ---- ---- ---- ---- ----
CREATE TABLE "TableT1"
(
  "Id"  Fixed (10,0)  NOT NULL  DEFAULT SERIAL (1),
  "Value"  Varchar (200) UNICODE
)
//
insert into "TableT1" values (1,'xx')
//
CREATE VIEW "v_TableT1" AS SELECT "Id", NULL AS "NullValue" FROM "TableT1"
//
CREATE INDEX "Aa" ON "TableT1" ("Id" ASC)
//-- ---- ---- ---- ---- ---- ----

And bugs for it:
1) missing null value & wrong name of view

On SQL Studio:
- double click on view "v_TableT1"
- right click on export to SQL Dialog
result is:

CREATE VIEW "V_TABLET1"
(
  "Id"
)
AS SELECT "Id", NULL AS "NullValue" FROM "TableT1"

2) wrong name of index

On SQL Studio:
- double click on index "Az"
- right click on export to SQL Dialog
result is:
CREATE INDEX "AA" ON "TableT1" ("Id" ASC)

Best regards,

Lukasz.

--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe:    http://lists.mysql.com/maxdb?unsub=mysql@(protected)