本文整理汇总了Java中com.taobao.tddl.common.jdbc.sorter.OracleExceptionSorter类的典型用法代码示例。如果您正苦于以下问题:Java OracleExceptionSorter类的具体用法?Java OracleExceptionSorter怎么用?Java OracleExceptionSorter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
OracleExceptionSorter类属于com.taobao.tddl.common.jdbc.sorter包,在下文中一共展示了OracleExceptionSorter类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: all
import com.taobao.tddl.common.jdbc.sorter.OracleExceptionSorter; //导入依赖的package包/类
@Test
public void all() {
OracleExceptionSorter s = new OracleExceptionSorter();
int[] errors = new int[] { 28, 600, 1012 };
SQLException e = new SQLException("reason", "08S01");
// Assert.assertTrue(s.isExceptionFatal(e));
for (int err : errors) {
e = new SQLException("reason", "01XXX", err);
Assert.assertTrue(s.isExceptionFatal(e));
}
e = new SQLException("NO DATASOURCE!", "01XXX", 21001);
Assert.assertTrue(s.isExceptionFatal(e));
e = new SQLException("NO ALIVE DATASOURCE", "01XXX", 21001);
Assert.assertTrue(s.isExceptionFatal(e));
e = new SQLException("ORA-XXX-TNS-XXX", "01XXX", 21001);
Assert.assertTrue(s.isExceptionFatal(e));
e = new SQLException("msg", "01XXX", -1);
Assert.assertFalse(s.isExceptionFatal(e));
e = new SQLException("msg", "01XXX", -1);
e.initCause(new SQLException("msg", "01XXX", -1));
Assert.assertFalse(s.isExceptionFatal(e));
e = new SQLException("msg", "01XXX", -1);
e.initCause(null);
Assert.assertFalse(s.isExceptionFatal(e));
}