Mailing List
Home
Forum Home
MySQL General - General MySQL discussion
MaxDB - Everything about MaxDB, formerly known as SAP DB
MySQL++ - Programming with the C++ API to MySQL
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
mysql:it 's a db not a dbms how it 's possible?!
Does the binary log enabling affect the MySQL performances?
Strange behavior, Table Level Permission
FULLTEXT query format question
Preventing Duplicate Entries
Comparing and writing out BLOBS
Executing MySQL Commands From Within C Program
Can 't access mysql after kernel upgrade
Mysql 4 0 Oracle Stored Procedure Trigger Conversion
Downgrade Mysql from 4 to 3 23
MySQL Cluster Software
mysql test 4 1 fails with the gis test
ERROR 2002: Can 't connect to local MySQL server through socket
Getting Identity after INSERT
Update one field with more fields from another table
ERROR 1045: Access denied for user: 'root@localhost ' (Using
password: NO)
mysql have same function mthod as Oracle decode()
 
JDBC 3.5 compliance

JDBC 3.5 compliance

2006-10-14       - By Markus KARG

 Back
On the MySQL web site it is told that MaxDB's JDBC driver would be JDBC
compliant. In fact, to fulfil this, the JDBC escape syntax must be
supported. This is not the case, as you easily can test:

s.execute("CREATE TABLE T1(F1 INTEGER, PRIMARY KEY (F1))");
s.execute("CREATE TABLE T2(F2 INTEGER, PRIMARY KEY (F2), FOREIGN KEY FK
(F2) REFERENCES T1 (F1) ON DELETE CASCADE)");
s.execute("SELECT * FROM T1 LEFT OUTER JOIN T2 ON T1.F1=T2.F2");
s.execute("SELECT * FROM T1 {oj LEFT OUTER JOIN T2 ON T1.F1=T2.F2}");

The first SELECT command is working well, the second one complains about
this: [-3008] (at 18): Invalid keyword or missing delimiter.

So to fulfil "real" JDBC compliance, this should be fixed. Unfortunately
I did not find any bug tracker or email address where to send a bug report.

Can anybody tell me where to complain about this insufficiency?

Thanks
Markus