RE: update Blob on Oracle

2003-07-08 Thread Russell Simpkins
on't work. Faq title is "How to: Oracle BLOB/CLOBs and JBoss" -Original Message- From: Gerard Airey [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 11:29 AM To: 'Turbine Torque Users List' Subject: RE: update Blob on Oracle Could the fact that the m

RE: update Blob on Oracle

2003-07-08 Thread Lach, Thierry
Well, "blob" is _not_ the same as "long raw" in Oracle. Try leaving the database as a blob and work with it. -Original Message- From: Bill Leng [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 12:01 PM To: Turbine Torque Users List Subject: Re: update Blob

Re: update Blob on Oracle

2003-07-08 Thread Bill Leng
t: Tuesday, July 08, 2003 11:29 AM To: 'Turbine Torque Users List' Subject: RE: update Blob on Oracle Could the fact that the max varchar2 on Oracle is 4000 characters indicate that it passing through a varchar2 stage somewhere? -Original Message- From: Bill Leng [mailto:[EMAIL PROT

RE: update Blob on Oracle

2003-07-08 Thread Lach, Thierry
y, July 08, 2003 11:29 AM To: 'Turbine Torque Users List' Subject: RE: update Blob on Oracle Could the fact that the max varchar2 on Oracle is 4000 characters indicate that it passing through a varchar2 stage somewhere? -Original Message- From: Bill Leng [mailto:[EMAIL PROTECTED

RE: update Blob on Oracle

2003-07-08 Thread Gerard Airey
Could the fact that the max varchar2 on Oracle is 4000 characters indicate that it passing through a varchar2 stage somewhere? -Original Message- From: Bill Leng [mailto:[EMAIL PROTECTED] Sent: 08 July 2003 15:39 To: Turbine Torque Users List Subject: update Blob on Oracle Hi, I am

Re: update Blob on Oracle

2003-07-08 Thread Bill Leng
3.0.2 Lach, Thierry wrote: What version of torque? -Original Message- From: Bill Leng [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 10:39 AM To: Turbine Torque Users List Subject: update Blob on Oracle Hi, I am using Torque on Oracle. My table has a column of the type LONG

RE: update Blob on Oracle

2003-07-08 Thread Lach, Thierry
What version of torque? -Original Message- From: Bill Leng [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 10:39 AM To: Turbine Torque Users List Subject: update Blob on Oracle Hi, I am using Torque on Oracle. My table has a column of the type LONG RAW. I can insert with a

update Blob on Oracle

2003-07-08 Thread Bill Leng
Hi, I am using Torque on Oracle. My table has a column of the type LONG RAW. I can insert with a byte array of about 2M. However, when I try to update it throught the Peer class's save method, I can only update with a byte array of about 4000 bytes. Has anybody encountered similar problem? tha