Neoview SQL Reference Manual (R2.3)
catch (SQLException e)
{
SQLException nextException;
nextException = e;
do
{
System.out.println(nextException.getMessage());
System.out.println("SQLState " + nextException.getSQLState());
System.out.println("Error Code " + nextException.getErrorCode());
} while ((nextException = nextException.getNextException()) != null);
}
}
}
116 SQL Statements