public Array createArrayOf(String typeName, Object[] elements) throws SQLException
{
try
{
return realConnection.createArrayOf(typeName, elements);
}
catch(SQLException s)
{
String methodCall = "createArrayOf(" + typeName + ", " + elements + ")";
reportException(methodCall, s, null);
throw s;
}
}
ConnectionSpy.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:dswork
作者:
评论列表
文章目录