resume uploads?

2003-11-06 Thread Benoit Jodoin
/alternative regarding this , i will be pleased. Regards Ben -- Benoit Jodoin <[EMAIL PROTECTED]> Vertical 7 === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto

Re: assigning a value to a long type variable

2003-08-21 Thread Benoit Jodoin
in. > Try this instead > > long myvalue = Long.parseLong("1021002"); > > -Tim > > -Original Message- > From: Benoit Jodoin [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 21, 2003 2:52 PM > To: [EMAIL PROTECTED] > Subject: assigning a val

assigning a value to a long type variable

2003-08-21 Thread Benoit Jodoin
t literals must be in the range -2147483648 to 2147483647. long myvalue = 1021002; ^ there must be a way to do it? Regards Ben -- Benoit Jodoin <[EMAIL PROTECTED]> Vertical 7 === To unsub

Re: CachedRowSet

2003-06-12 Thread Benoit Jodoin
abstract class. It can't be > instantiated." > > That's the problem DUHH! > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED] On Behalf Of Benoit Jodoin [ V7 ] > Sent: Thursda

CachedRowSet

2003-06-11 Thread Benoit Jodoin [ V7 ]
Anyone here using a CachedRowSet? all examples i found looked like this : import sun.jdnc.rowset.*; sun.jdbc.rowset.CachedRowSet crs = new sun.jdbc.rowset.CachedRowSet(); this is the error message i get: class sun.jdbc.rowset.CachedRowSet is an abstract class. It can't be instantiated. CachedRow

Re: how to convert string to float?

2002-10-01 Thread Benoit Jodoin
All you have to do is float f = Float.parseFloat("12.12") Regards Ben At 07:51 PM 10/1/2002 +0530, you wrote: >int i = Integer.ParseInt("123") > >what to do for >float f = ("12.12") > >=== >To unsubscribe: mailto [EMAIL

Re: JSP Apostrophe in JDBC

2002-09-05 Thread Benoit Jodoin
so some method names may be >incomplete but note how much work I put into converting the apostrophes, and >how hard I had to try to get the date formatted properly. For any compliant >JDBC driver, this code will work as intended, and I didn't have to do >anything for it. Welcome to Java

Re: JSP Apostrophe in JDBC

2002-09-05 Thread Benoit Jodoin
-0400 >> >>Try replacing your single quote with 2 single quotes..works just fine for >>me with sqlserver. >> >>Regards >> >>Ben >> >>At 01:12 AM 9/5/2002 -0400, you wrote: >>>[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]

Re: JSP Apostrophe in JDBC

2002-09-04 Thread Benoit Jodoin
Try replacing your single quote with 2 single quotes..works just fine for me with sqlserver. Regards Ben At 01:12 AM 9/5/2002 -0400, you wrote: >[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer] Line 1: Incorrect >syntax near 's'. > >- Original Message -

Re: JSP Apostrophe in JDBC

2002-09-04 Thread Benoit Jodoin
Can you give us your error msg plz?:) At 11:33 PM 9/4/2002 -0400, you wrote: >I am getting an error when updating some input text records using a form > >When I enter an Apostrophe in the text fields and send to the jsp page >which update the record in the db, it causes an error on the sql jdbc c