First, don't spend much time in Java so hope this is not a really dumb question. I need to run a singleton select from user tables. I'm currently prototyping this using standard UDB catalog tables. I have code like the following:
ResultSet result1 = stmt.executeQue ry(
"SELECT MAX(STMTNO), MIN(STMTNO), AVG(STMTNO)" +
"FROM SYSIBM.SYSSTMT WHERE ISOLATION < 'X'");
//
//...
Leave a comment: