That's what I'm saying with the "snip" example...

Guido.

Java Leader/Network Specialist, CTO, WHS International

----- Original Message -----
From: "Ralph Einfeldt" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 30, 2001 2:19 AM
Subject: AW: Problems with ResultSet


>
> It can happen with any driver.
>
> That's what JDBC API doc tells:
>
> "For maximum portability, result set columns within each row
>  should be read in left-to-right order, and each column should
>  be read only once."
>
> > -----Ursprüngliche Nachricht-----
> > Von: Guido Medina [mailto:[EMAIL PROTECTED]]
> > Gesendet: Mittwoch, 30. Mai 2001 07:38
> > An: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> > Betreff: Re: Problems with ResultSet
> <snip/>
> > It means that you cannot do the follow with MS Access:
> >
> > Statement st = con.createStatement();
> > ResultSet rs = st.executeQuery("......");
> > while (rs.next()) {
> >    out.println(String a = rs.getString(1));
> >    ...
> >    ...
> >    ...
> >    out.println(String a = rs.getString(1));
> > }
> <snip/>
>

Reply via email to