Connection.nativeSQL

Connection.nativeSQL

Interface Overview | Interface Members | This Package | All Packages

Syntax
public abstract String nativeSQL( String sql ) throws SQLException
Parameters
sql
a SQL statement that may contain one or more '?' parameter placeholders
Returns
the native form of this statement
Description
A driver may convert the JDBC sql grammar into its system's native SQL grammar prior to sending it; nativeSQL returns the native form of the statement that the driver would have sent.

Exceptions
SQLException if a database-access error occurs.