RE: How can I use an BLOB datatype

2000-11-30 Thread Russ White
Of course you can also do this in reverse for putting bytes into the field. Good day! Russ > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Tim Endres > Sent: Wednesday, November 29, 2000 11:25 PM > To: Orion-Interest > Subject: RE: Ho

Re: How can I use an BLOB datatype

2000-11-30 Thread Joachim Peer
- From: Tim Drury <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Sent: Wednesday, November 29, 2000 10:33 PM Subject: RE: How can I use an BLOB datatype > > In CMP, the output streams should be created for you. > The database config xml file should provide a mapping

Re: How can I use an BLOB datatype

2000-11-30 Thread Tobias Streckel
30. November 2000 07:10 Betreff: RE: How can I use an BLOB datatype >Gernalizing this one step further. We have a situation where >we want to place large ( larger than 10MB ) into the DB. Thus, >when I get or store I would really like to have an InputStream >or OutputStream to read o

RE: How can I use an BLOB datatype

2000-11-29 Thread Tim Endres
Gernalizing this one step further. We have a situation where we want to place large ( larger than 10MB ) into the DB. Thus, when I get or store I would really like to have an InputStream or OutputStream to read or write the "object". However, it does not appear that EJB really supports this. Has a

RE: How can I use an BLOB datatype

2000-11-29 Thread Tim Drury
iewert [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, November 29, 2000 2:31 PM > To: Orion-Interest > Subject: Re: How can I use an BLOB datatype > > > I'm investigating that myself. I want to get it to work for > serializing > an entity object's dependent object

Re: How can I use an BLOB datatype

2000-11-29 Thread Ron Siewert
I'm investigating that myself. I want to get it to work for serializing an entity object's dependent objects to a database. From what I can tell, you need to implement interface Serializable on the object(s) you want to persist. In java.sql api docs, you'll see classes named ObjectOutputStream, Pr

How can I use an BLOB datatype

2000-11-29 Thread Tobias Streckel
Hello, I have a cmp entitybean. How can I implements an BLOB in sourcecode?? Thanks Tobi