java.sql.SQLRecoverableException Java Examples
The following examples show how to use
java.sql.SQLRecoverableException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #2
Source File: PooledCassandraConnection.java From cassandra-jdbc-wrapper with Apache License 2.0 | 6 votes |
void statementErrorOccurred(CassandraPreparedStatement preparedStatement, SQLException sqlException) { StatementEvent event = new StatementEvent(this, preparedStatement, sqlException); for (StatementEventListener listener : statementEventListeners) { listener.statementErrorOccurred(event); } String cql = preparedStatement.getCql(); Set<CassandraPreparedStatement> usedStatements = usedPreparedStatements.get(cql); if (!(event.getSQLException() instanceof SQLRecoverableException)) { preparedStatement.close(); usedStatements.remove(preparedStatement); } }
Example #3
Source File: SQLRecoverableExceptionTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #4
Source File: SQLRecoverableExceptionTests.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #5
Source File: SQLRecoverableExceptionTests.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #6
Source File: SQLRecoverableExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with Throwable */ @Test public void test9() { SQLRecoverableException ex = new SQLRecoverableException(t); assertTrue(ex.getMessage().equals(cause) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #7
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException and setting all objects to null */ @Test public void test() { SQLRecoverableException e = new SQLRecoverableException(null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #8
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with no-arg constructor */ @Test public void test1() { SQLRecoverableException ex = new SQLRecoverableException(); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #9
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message */ @Test public void test2() { SQLRecoverableException ex = new SQLRecoverableException(reason); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #10
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, and SQLState */ @Test public void test3() { SQLRecoverableException ex = new SQLRecoverableException(reason, state); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #11
Source File: SqlRetryPolicy.java From spring-cloud-aws with Apache License 2.0 | 5 votes |
/** * Returns all the exceptions for which a retry is useful. * @return - Map containing all retryable exceptions for the * {@link BinaryExceptionClassifier} */ private static Map<Class<? extends Throwable>, Boolean> getSqlRetryAbleExceptions() { Map<Class<? extends Throwable>, Boolean> retryableExceptions = new HashMap<>(); retryableExceptions.put(SQLTransientException.class, true); retryableExceptions.put(SQLRecoverableException.class, true); retryableExceptions.put(TransientDataAccessException.class, true); retryableExceptions.put(SQLNonTransientConnectionException.class, true); return retryableExceptions; }
Example #12
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, SQLState, errorCode, and Throwable */ @Test public void test5() { SQLRecoverableException ex = new SQLRecoverableException(reason, state, errorCode, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == errorCode); }
Example #13
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, and Throwable */ @Test public void test7() { SQLRecoverableException ex = new SQLRecoverableException(reason, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #14
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with null Throwable */ @Test public void test8() { SQLRecoverableException ex = new SQLRecoverableException((Throwable)null); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #15
Source File: CassandraPreparedStatement.java From cassandra-jdbc-wrapper with Apache License 2.0 | 5 votes |
@SuppressWarnings("boxing") private final void checkIndex(int index) throws SQLException { if (index > count) throw new SQLRecoverableException(String.format("the column index : %d is greater than the count of bound variable markers in the CQL: %d", index, count)); if (index < 1) throw new SQLRecoverableException(String.format("the column index must be a positive number : %d", index)); }
Example #16
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Serialize a SQLRecoverableException and make sure you can read it back properly */ @Test public void test10() throws Exception { SQLRecoverableException e = new SQLRecoverableException(reason, state, errorCode, t); SQLRecoverableException ex1 = createSerializedException(e); assertTrue(reason.equals(ex1.getMessage()) && ex1.getSQLState().equals(state) && cause.equals(ex1.getCause().toString()) && ex1.getErrorCode() == errorCode); }
Example #17
Source File: SQLRecoverableExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #18
Source File: SQLRecoverableExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with Throwable */ @Test public void test9() { SQLRecoverableException ex = new SQLRecoverableException(t); assertTrue(ex.getMessage().equals(cause) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #19
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException and setting all objects to null */ @Test public void test() { SQLRecoverableException e = new SQLRecoverableException(null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #20
Source File: SQLRecoverableExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #21
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message */ @Test public void test2() { SQLRecoverableException ex = new SQLRecoverableException(reason); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #22
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, and SQLState */ @Test public void test3() { SQLRecoverableException ex = new SQLRecoverableException(reason, state); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #23
Source File: SQLRecoverableExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with no-arg constructor */ @Test public void test1() { SQLRecoverableException ex = new SQLRecoverableException(); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #24
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, SQLState, errorCode, and Throwable */ @Test public void test5() { SQLRecoverableException ex = new SQLRecoverableException(reason, state, errorCode, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == errorCode); }
Example #25
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, SQLState, and Throwable */ @Test public void test6() { SQLRecoverableException ex = new SQLRecoverableException(reason, state, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #26
Source File: SQLRecoverableExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, SQLState, and Throwable */ @Test public void test6() { SQLRecoverableException ex = new SQLRecoverableException(reason, state, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #27
Source File: SQLRecoverableExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException with message, and Throwable */ @Test public void test7() { SQLRecoverableException ex = new SQLRecoverableException(reason, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #28
Source File: SQLRecoverableExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLRecoverableException and setting all objects to null */ @Test public void test() { SQLRecoverableException e = new SQLRecoverableException(null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #29
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Serialize a SQLRecoverableException and make sure you can read it back properly */ @Test public void test10() throws Exception { SQLRecoverableException e = new SQLRecoverableException(reason, state, errorCode, t); SQLRecoverableException ex1 = createSerializedException(e); assertTrue(reason.equals(ex1.getMessage()) && ex1.getSQLState().equals(state) && cause.equals(ex1.getCause().toString()) && ex1.getErrorCode() == errorCode); }
Example #30
Source File: SQLRecoverableExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLRecoverableException ex = new SQLRecoverableException("Exception 1", t1); SQLRecoverableException ex1 = new SQLRecoverableException("Exception 2"); SQLRecoverableException ex2 = new SQLRecoverableException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }