printing
Hi, everybody! I need your help. The problem is: I wanted to print out records from database, but it prints only odd or only even rows (it depends on the first
position of cursor - before first or first row).
The code fragment is:
......
ResultSet rs;
......
public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
.....
rs.next();
....
if (rs.isAfterLast()) {
return NO_SUCH_PAGE;
} else {
.....
g.drawString(rs.getString("NAME"), x, y);
...
return PAGE_EXISTS;
}
}
What should I add or change.
Thanks in advance

