How will we find wether JDBC supports UNION Queries
Thank's in advance
Sunil
shailesh sonavadekar
Ranch Hand
Joined: Oct 12, 2000
Posts: 1874
posted
0
please go to java.sun.com & there are various types of jdbc drivers . You will get all the information about them on that site & bprobably in those documents only you will get the answer for union querries suppported by jdbc. i hope this is useful.
MSD
Greenhorn
Joined: Jan 22, 2000
Posts: 20
posted
0
Hi Sunil, UNION queries are defined as standard SQL syntax and are hence defined by all ASNI SQL compliant databases. So u shouldn' thave a problem with UNION. If however u do want to check, i would suggest firing a UNIONquery and checking for an SQLException. It's not very clean, but i guess JDBC drivers do not allow u to access their properties. Hope it helps, -Mohammed
Matt Midcap
Sheriff
Joined: Jan 07, 1999
Posts: 440
posted
0
I'm moving this to the "JDBC" forum.
Best Regards,<br />Matt Midcap
Frank Carver
Sheriff
Joined: Jan 07, 1999
Posts: 6913
posted
0
I think there may be some confusion here. Most JDBC drivers simply pass the SQL to the appropriate database, and whether any particular SQL features are supported depends entirely on the database. I have happily used UNION in queries to Oracle 7 through the Oracle 7 thin driver. What database are you using?
Hi You can make use of the of the builtin fuction called supportsUnion() which returns a boolean value . This method is available in DatabaseMetaData interface.
------------------ Sandeep Jain
Try and Try Till u succeed<br /> <br />Sandeep Jain