DEVFYI - Developer Resource - FYI

Can I use JDBC to execute non-standard features that my DBMS provides?

JDBC Interview Questions and Answers


(Continued from previous question...)

Can I use JDBC to execute non-standard features that my DBMS provides?

The answer is a qualified yes. As discussed under SQL Conformance: "One way the JDBC API deals with this problem is to allow any query string to be passed through to an underlying DBMS driver. This means that an application is free to use as much SQL functionality as desired, but it runs the risk of receiving an error on some DBMSs. In fact, an application query may be something other than SQL, or it may be a specialized derivative of SQL designed for specific DBMSs (for document or image queries, for example)."
Clearly this means either giving up portability or checking the DBMS curently used before invoking specific operations.

(Continued on next question...)

Other Interview Questions