*/
public P6LogResultSetInvocationHandler(final ResultSet underlying, final StatementInformation statementInformation)
throws SQLException {
super(underlying);
ResultSetInformation resultSetInformation = new ResultSetInformation(statementInformation);
P6LogResultSetNextDelegate nextDelegate = new P6LogResultSetNextDelegate(resultSetInformation);
P6LogResultSetCloseDelegate closeDelegate = new P6LogResultSetCloseDelegate(resultSetInformation);
P6LogResultSetGetColumnValueDelegate getColumnValueDelegate = new P6LogResultSetGetColumnValueDelegate(resultSetInformation);
addDelegate(