Error in ORList (Re: byte array OR mapping...)

2000-11-28 Thread Laurent Cornelis
quot; [EMAIL PROTECTED] Sent: Monday, November 27, 2000 4:47 PM Subject: RE: byte array OR mapping... The '[B' is the String returned when I do byte[].getClass().toString() I don't think you want to do that. Firstly, a byte is not a class. byte is a primitive like int, float, char, et

Re: Error in ORList (Re: byte array OR mapping...)

2000-11-28 Thread Vidur Dhanda
Drury" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Monday, November 27, 2000 4:47 PM Subject: RE: byte array OR mapping... The '[B' is the String returned when I do byte[].getClass().toString() I don't think you want to do that. Firstly, a byte is n

Workaround found - Re: Error in ORList (Re: byte array OR mapping...)

2000-11-28 Thread Laurent Cornelis
; } } And it works fine !! Laurent - Original Message - From: "Vidur Dhanda" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday, November 28, 2000 1:38 PM Subject: Re: Error in ORList (Re: byte array OR mapping...) I had posted something similar as a bug

byte array OR mapping...

2000-11-27 Thread Laurent Cornelis
Hello, I have an Entity Bean : public class ResultBean implements EntityBean { [...] public String id; [...] public byte[][] graphResult; } The graphResult field is an array of byte arrays. I want it to be stored as a list of BLOBs. Here is my mapping for this field

RE: byte array OR mapping...

2000-11-27 Thread Tim Drury
The '[B' is the String returned when I do byte[].getClass().toString() I don't think you want to do that. Firstly, a byte is not a class. byte is a primitive like int, float, char, etc. which are not classes in Java (maybe you are a Smalltalk programmer?). Second, getClass().toString()