Home
last modified time | relevance | path

Searched defs:SQLState (Results 1 – 25 of 235) sorted by relevance

12345678910

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.jdbc/src/test/java/org/springframework/jdbc/support/
H A DSQLExceptionSubclassFactory.java38 public static SQLException newSQLDataException(String reason, String SQLState, int vendorCode) { in newSQLDataException()
42 …public static SQLException newSQLFeatureNotSupportedException(String reason, String SQLState, int … in newSQLFeatureNotSupportedException()
46 …Exception newSQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCo… in newSQLIntegrityConstraintViolationException()
50 …public static SQLException newSQLInvalidAuthorizationSpecException(String reason, String SQLState,… in newSQLInvalidAuthorizationSpecException()
54 …public static SQLException newSQLNonTransientConnectionException(String reason, String SQLState, i… in newSQLNonTransientConnectionException()
58 …public static SQLException newSQLSyntaxErrorException(String reason, String SQLState, int vendorCo… in newSQLSyntaxErrorException()
62 …public static SQLException newSQLTransactionRollbackException(String reason, String SQLState, int … in newSQLTransactionRollbackException()
66 …public static SQLException newSQLTransientConnectionException(String reason, String SQLState, int … in newSQLTransientConnectionException()
70 public static SQLException newSQLTimeoutException(String reason, String SQLState, int vendorCode) { in newSQLTimeoutException()
74 …public static SQLException newSQLRecoverableException(String reason, String SQLState, int vendorCo… in newSQLRecoverableException()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.sql/share/classes/java/sql/
H A DSQLTransientConnectionException.java85 public SQLTransientConnectionException(String reason, String SQLState) { in SQLTransientConnectionException()
103 public SQLTransientConnectionException(String reason, String SQLState, int vendorCode) { in SQLTransientConnectionException()
152 public SQLTransientConnectionException(String reason, String SQLState, Throwable cause) { in SQLTransientConnectionException()
169 …public SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable c… in SQLTransientConnectionException()
H A DSQLSyntaxErrorException.java84 public SQLSyntaxErrorException(String reason, String SQLState) { in SQLSyntaxErrorException()
102 public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode) { in SQLSyntaxErrorException()
151 public SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) { in SQLSyntaxErrorException()
168 … public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLSyntaxErrorException()
H A DSQLTransactionRollbackException.java84 public SQLTransactionRollbackException(String reason, String SQLState) { in SQLTransactionRollbackException()
102 public SQLTransactionRollbackException(String reason, String SQLState, int vendorCode) { in SQLTransactionRollbackException()
151 public SQLTransactionRollbackException(String reason, String SQLState, Throwable cause) { in SQLTransactionRollbackException()
168 …public SQLTransactionRollbackException(String reason, String SQLState, int vendorCode, Throwable c… in SQLTransactionRollbackException()
H A DSQLTransientException.java82 public SQLTransientException(String reason, String SQLState) { in SQLTransientException()
100 public SQLTransientException(String reason, String SQLState, int vendorCode) { in SQLTransientException()
149 public SQLTransientException(String reason, String SQLState, Throwable cause) { in SQLTransientException()
166 public SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLTransientException()
H A DSQLDataException.java85 public SQLDataException(String reason, String SQLState) { in SQLDataException()
103 public SQLDataException(String reason, String SQLState, int vendorCode) { in SQLDataException()
150 public SQLDataException(String reason, String SQLState, Throwable cause) { in SQLDataException()
166 public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLDataException()
H A DSQLNonTransientConnectionException.java85 public SQLNonTransientConnectionException(String reason, String SQLState) { in SQLNonTransientConnectionException()
103 public SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode) { in SQLNonTransientConnectionException()
152 public SQLNonTransientConnectionException(String reason, String SQLState, Throwable cause) { in SQLNonTransientConnectionException()
169 …public SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode, Throwabl… in SQLNonTransientConnectionException()
H A DSQLNonTransientException.java82 public SQLNonTransientException(String reason, String SQLState) { in SQLNonTransientException()
100 public SQLNonTransientException(String reason, String SQLState, int vendorCode) { in SQLNonTransientException()
150 public SQLNonTransientException(String reason, String SQLState, Throwable cause) { in SQLNonTransientException()
167 … public SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLNonTransientException()
H A DSQLRecoverableException.java85 public SQLRecoverableException(String reason, String SQLState) { in SQLRecoverableException()
103 public SQLRecoverableException(String reason, String SQLState, int vendorCode) { in SQLRecoverableException()
152 public SQLRecoverableException(String reason, String SQLState, Throwable cause) { in SQLRecoverableException()
169 … public SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLRecoverableException()
H A DSQLTimeoutException.java84 public SQLTimeoutException(String reason, String SQLState) { in SQLTimeoutException()
102 public SQLTimeoutException(String reason, String SQLState, int vendorCode) { in SQLTimeoutException()
151 public SQLTimeoutException(String reason, String SQLState, Throwable cause) { in SQLTimeoutException()
168 public SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLTimeoutException()
H A DSQLFeatureNotSupportedException.java90 public SQLFeatureNotSupportedException(String reason, String SQLState) { in SQLFeatureNotSupportedException()
108 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) { in SQLFeatureNotSupportedException()
157 public SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) { in SQLFeatureNotSupportedException()
174 …public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable c… in SQLFeatureNotSupportedException()
H A DSQLIntegrityConstraintViolationException.java85 public SQLIntegrityConstraintViolationException(String reason, String SQLState) { in SQLIntegrityConstraintViolationException()
103 … public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode) { in SQLIntegrityConstraintViolationException()
152 … public SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) { in SQLIntegrityConstraintViolationException()
169 …public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Th… in SQLIntegrityConstraintViolationException()
H A DSQLInvalidAuthorizationSpecException.java85 public SQLInvalidAuthorizationSpecException(String reason, String SQLState) { in SQLInvalidAuthorizationSpecException()
103 … public SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode) { in SQLInvalidAuthorizationSpecException()
152 public SQLInvalidAuthorizationSpecException(String reason, String SQLState, Throwable cause) { in SQLInvalidAuthorizationSpecException()
169 …public SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode, Throwa… in SQLInvalidAuthorizationSpecException()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.sql/share/classes/java/sql/
H A DSQLFeatureNotSupportedException.java90 public SQLFeatureNotSupportedException(String reason, String SQLState) { in SQLFeatureNotSupportedException()
108 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) { in SQLFeatureNotSupportedException()
157 public SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) { in SQLFeatureNotSupportedException()
174 …public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable c… in SQLFeatureNotSupportedException()
H A DSQLIntegrityConstraintViolationException.java85 public SQLIntegrityConstraintViolationException(String reason, String SQLState) { in SQLIntegrityConstraintViolationException()
103 … public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode) { in SQLIntegrityConstraintViolationException()
152 … public SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) { in SQLIntegrityConstraintViolationException()
169 …public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Th… in SQLIntegrityConstraintViolationException()
H A DSQLNonTransientConnectionException.java85 public SQLNonTransientConnectionException(String reason, String SQLState) { in SQLNonTransientConnectionException()
103 public SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode) { in SQLNonTransientConnectionException()
152 public SQLNonTransientConnectionException(String reason, String SQLState, Throwable cause) { in SQLNonTransientConnectionException()
169 …public SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode, Throwabl… in SQLNonTransientConnectionException()
H A DSQLNonTransientException.java82 public SQLNonTransientException(String reason, String SQLState) { in SQLNonTransientException()
100 public SQLNonTransientException(String reason, String SQLState, int vendorCode) { in SQLNonTransientException()
150 public SQLNonTransientException(String reason, String SQLState, Throwable cause) { in SQLNonTransientException()
167 … public SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLNonTransientException()
H A DSQLSyntaxErrorException.java84 public SQLSyntaxErrorException(String reason, String SQLState) { in SQLSyntaxErrorException()
102 public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode) { in SQLSyntaxErrorException()
151 public SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) { in SQLSyntaxErrorException()
168 … public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLSyntaxErrorException()
H A DSQLTimeoutException.java84 public SQLTimeoutException(String reason, String SQLState) { in SQLTimeoutException()
102 public SQLTimeoutException(String reason, String SQLState, int vendorCode) { in SQLTimeoutException()
151 public SQLTimeoutException(String reason, String SQLState, Throwable cause) { in SQLTimeoutException()
168 public SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLTimeoutException()
H A DSQLDataException.java85 public SQLDataException(String reason, String SQLState) { in SQLDataException()
103 public SQLDataException(String reason, String SQLState, int vendorCode) { in SQLDataException()
150 public SQLDataException(String reason, String SQLState, Throwable cause) { in SQLDataException()
166 public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLDataException()
H A DSQLInvalidAuthorizationSpecException.java85 public SQLInvalidAuthorizationSpecException(String reason, String SQLState) { in SQLInvalidAuthorizationSpecException()
103 … public SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode) { in SQLInvalidAuthorizationSpecException()
152 public SQLInvalidAuthorizationSpecException(String reason, String SQLState, Throwable cause) { in SQLInvalidAuthorizationSpecException()
169 …public SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode, Throwa… in SQLInvalidAuthorizationSpecException()
H A DSQLRecoverableException.java85 public SQLRecoverableException(String reason, String SQLState) { in SQLRecoverableException()
103 public SQLRecoverableException(String reason, String SQLState, int vendorCode) { in SQLRecoverableException()
152 public SQLRecoverableException(String reason, String SQLState, Throwable cause) { in SQLRecoverableException()
169 … public SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLRecoverableException()
H A DSQLTransientException.java82 public SQLTransientException(String reason, String SQLState) { in SQLTransientException()
100 public SQLTransientException(String reason, String SQLState, int vendorCode) { in SQLTransientException()
149 public SQLTransientException(String reason, String SQLState, Throwable cause) { in SQLTransientException()
166 public SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLTransientException()
H A DSQLTransactionRollbackException.java84 public SQLTransactionRollbackException(String reason, String SQLState) { in SQLTransactionRollbackException()
102 public SQLTransactionRollbackException(String reason, String SQLState, int vendorCode) { in SQLTransactionRollbackException()
151 public SQLTransactionRollbackException(String reason, String SQLState, Throwable cause) { in SQLTransactionRollbackException()
168 …public SQLTransactionRollbackException(String reason, String SQLState, int vendorCode, Throwable c… in SQLTransactionRollbackException()
H A DSQLTransientConnectionException.java85 public SQLTransientConnectionException(String reason, String SQLState) { in SQLTransientConnectionException()
103 public SQLTransientConnectionException(String reason, String SQLState, int vendorCode) { in SQLTransientConnectionException()
152 public SQLTransientConnectionException(String reason, String SQLState, Throwable cause) { in SQLTransientConnectionException()
169 …public SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable c… in SQLTransientConnectionException()

12345678910