All Packages Class Hierarchy This Package Previous Next Index
Class oracle.jdbc.driver.OracleSQLException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.sql.SQLException
|
+----oracle.jdbc.driver.OracleSQLException
- public class OracleSQLException
- extends SQLException
-
OracleSQLException()
-
-
OracleSQLException(String)
-
-
OracleSQLException(String, String)
-
-
OracleSQLException(String, String, int)
-
-
OracleSQLException(String, String, int, Object[])
-
-
getNumParameters()
- Get total number of ORacle error message parameters.
-
getParameters()
- Get Oracle error message parameters.
-
setParameters(Object[])
- Set Oracle error message parameters.
OracleSQLException
public OracleSQLException()
OracleSQLException
public OracleSQLException(String reason)
OracleSQLException
public OracleSQLException(String reason,
String SQLState)
OracleSQLException
public OracleSQLException(String reason,
String SQLState,
int vendorCode)
OracleSQLException
public OracleSQLException(String reason,
String SQLState,
int vendorCode,
Object parameters[])
getParameters
public Object[] getParameters()
- Get Oracle error message parameters.
- Returns:
- a Object array contains Oracle error's parameters.
Each array element is of type String or Integer. An
Object array of length zero is returned for null case.
getNumParameters
public int getNumParameters()
- Get total number of ORacle error message parameters.
setParameters
public void setParameters(Object parameters[])
- Set Oracle error message parameters.
All Packages Class Hierarchy This Package Previous Next Index