Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-17 Thread Bruno Lowagie
PhilipPeinsold wrote: > To everyone who wants to know how it works Thanks for the feedback! We'll use this post for further reference. br, Bruno - Check out the new SourceForge.net Marketplace. It's the best place to buy or s

Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-17 Thread PhilipPeinsold
To everyone who wants to know how it works: String sqlText = "SELECT BLOB FROM TABLE FOR UPDATE"; ResultSet rset = stmt.executeQuery(sqlText); while(rset.next()) { BLOB image = ((OracleResultSet) rset).getBLOB("T

Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread PhilipPeinsold
Thanks, that's absolutly what I needed! Alexis Pigeon wrote: > > Hi Philip, > > On 16/06/2008, PhilipPeinsold <[EMAIL PROTECTED]> wrote: >> >> Hi @ all! >> Need your help! >> I'm trying to get a blob (the blob is an image) from a oracle datatbase, >> and >> want to put it out in a pdf-fil

Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread Howard Shank
image from the byte array. Don't forget to close your DB connection or your DBA's may not like you. Howard Shank - Original Message From: PhilipPeinsold <[EMAIL PROTECTED]> To: itext-questions@lists.sourceforge.net Sent: Monday, June 16, 2008 6:50:20 AM Subject: [iText-

Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread Ronan Crowley
Date: Mon, 16 Jun 2008 03:50:20 -0700 (PDT) > From: PhilipPeinsold <[EMAIL PROTECTED]> > Subject: [iText-questions] blob from oracle to com.lowagie.text.Image > To: itext-questions@lists.sourceforge.net > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charse

Re: [iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread Alexis Pigeon
Hi Philip, On 16/06/2008, PhilipPeinsold <[EMAIL PROTECTED]> wrote: > > Hi @ all! > Need your help! > I'm trying to get a blob (the blob is an image) from a oracle datatbase, and > want to put it out in a pdf-file as an image. > > I don't know how to get the image out of the database and then

[iText-questions] blob from oracle to com.lowagie.text.Image

2008-06-16 Thread PhilipPeinsold
Hi @ all! Need your help! I'm trying to get a blob (the blob is an image) from a oracle datatbase, and want to put it out in a pdf-file as an image. I don't know how to get the image out of the database and then convert it into com.lowagie.text.Image. May here is someone who tried that already or