Re: Sequence Problem

2001-02-21 Thread James Strachan
From: "Joseph Ottinger" <[EMAIL PROTECTED]> > As far as why I stay on the list despite so many offtopic or misinformed > questions... well, what can I say? Hope springs eternal. I too think this list is a bit noisy with a far too many questions on everything other than JSP. Why don't we setup a n

Re: Sequence Problem

2001-02-21 Thread Geoffrey Guthrie
ate forum, they are more likely to get a correct answer. The fact that Joseph comes off like an asshole is irrelevant. -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 11:52 AM To: [EMAIL PROTECTED] Subject: Re: Sequence Problem H

Re: Sequence Problem

2001-02-21 Thread Beth Johnson
If you have all the answers to the "to stupid to tolerate" questions, why are even bothering to subscribe to this list. - Original Message - From: "Joseph Ottinger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 11:25

Re: Sequence Problem

2001-02-21 Thread Girish Sahu
:19 PM To: [EMAIL PROTECTED] Subject: Re: Sequence Problem Hi, it's a JDBC problem. You must always access the columns (and the records) of a resultset in the same order they appear. Have you noticed that there isn't a previous() method in ResultSet class? But there's the next(). B

Re: Sequence Problem

2001-02-21 Thread Rodrigo Lopes
hi > > i want to know some thing about sequence problem for getting result from a > query, > > e.g. select a, b, c, from table; > > then !! > rst.getString("a"); > rst.getString("b"); > rst.getString("c"); > > well this works

Re: Sequence Problem

2001-02-21 Thread Peter Pilgrim
nt by: A mailing list about Java Server Pages specification and [EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: Subject: Re: Sequence Problem if we use column index it does not give a problem but then same should apply for field index. why not?? sandarbh - Original Messag

Re: Sequence Problem

2001-02-21 Thread Joseph Ottinger
n attached to JSP-I, it's sadness. >From: Geoffrey Guthrie <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Sequence Problem >Date: Wed, 21 Feb 2001 12:

Re: Sequence Problem

2001-02-21 Thread Joseph Ottinger
ohnson <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Sequence Problem >Date: Wed, 21 Feb 2001 12:34:24 -0400 > >If you have all the answers to the "

Re: Sequence Problem

2001-02-21 Thread Joseph Ottinger
s all "let's focus ONLY on the problem at hand, to the point where there ARE no other problems..." when a little bit of perspective leads to the solution to the problem at hand. >From: Andrea Vicentini <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages speci

Re: Sequence Problem

2001-02-21 Thread Andrea Vicentini
e are you :-) ? Senior Software Engineer Andrea Vicentini www.abaXX.de - Original Message - From: "sandarbh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 3:20 PM Subject: Re: Sequence Problem > if we use column index it does not g

Re: Sequence Problem

2001-02-21 Thread Kai Hackemesser
You should ask that the writers of your JDBC driver. - Original Message - From: sandarbh <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 3:20 PM Subject: Re: Sequence Problem > if we use column index it does not give a problem but then sa

Re: Sequence Problem

2001-02-21 Thread sandarbh
if we use column index it does not give a problem but then same should apply for field index. why not?? sandarbh - Original Message - From: "Peter Pilgrim" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 2:03 PM Subject: Re: Sequence

Re: Sequence Problem

2001-02-21 Thread Peter Pilgrim
est Of All Time" Message History From: Muhammad Asim Ajmal <[EMAIL PROTECTED]>@java.sun.com> on 21/02/2001 17:33 ZE5 hi i want to know some thing about sequence problem for getting result from a query, e.g. sele

AW: Sequence Problem

2001-02-21 Thread Kurt, Oliver
Especially when there is definitely no method in ResultSet which is getString(String, int) and this is no JDBC Mailing list, but a JSP !!! btw: if your "sequence" problem really exists, it is definitely no problem caused by the JDBC-API provided by sun, but from the implementat

Re: Sequence Problem

2001-02-21 Thread The Burkes
Wednesday, February 21, 2001 7:46 AM To: [EMAIL PROTECTED] Subject: Re: Sequence Problem Hello, I'm not sure but may be you can try the following: rst.getString("b",2); rst.getString("a",1); rst.getString("c",3); Regards. Dima. Muhammad Asim Ajmal wrote:

Re: Sequence Problem

2001-02-21 Thread David Mellado
<[EMAIL PROTECTED]> Fecha: miƩrcoles, 21 de febrero de 2001 13:38 Asunto: Sequence Problem >hi > >i want to know some thing about sequence problem for getting result from a >query, > >e.g. select a, b, c, from table; > >then !! >rst.getString("a"); >rst

Re: Sequence Problem

2001-02-21 Thread Dmitrijs Bacerikovs
Hello, I'm not sure but may be you can try the following: rst.getString("b",2); rst.getString("a",1); rst.getString("c",3); Regards. Dima. Muhammad Asim Ajmal wrote: > hi!!!! > > i want to know some thing about sequence problem for getting result f

Sequence Problem

2001-02-21 Thread Muhammad Asim Ajmal
hi i want to know some thing about sequence problem for getting result from a query, e.g. select a, b, c, from table; then !! rst.getString("a"); rst.getString("b"); rst.getString("c"); well this works fine,, but if i change the sequence like rst.ge