If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Getting an image BLOB in java

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-03-04, 11:10
sjl301 sjl301 is offline
Registered User
 
Join Date: Feb 2004
Location: London England
Posts: 8
Getting an image BLOB in java

can anybody tell me how to get an image out of mysql and into a java imageIcon or image object?

I'm placing the image using:

insert into table values(pKey, LOAD_FILE("c:/testPic.jpeg"));

I'm obviously using JDBC and resultsets to connect!

Any help would be super!

Regards,

sjl301
Reply With Quote
  #2 (permalink)  
Old 02-05-04, 00:31
asherh asherh is offline
Registered User
 
Join Date: Jul 2003
Posts: 34
Hi,

This may or may not help...

You can use PrepareStatement's getObject(x) and setObject(x,y) methods to store and retrieve the values.

We use the Base64Encoder class (http://www.servlets.com/cos/index.html or similar) to encode and decode the objects (we store images, pdfs, worddocs, etc).

Once you retrieve the decoded object as a byte[], you can pass it into something like ImageIcon.

Chrs,
Ash
Reply With Quote
  #3 (permalink)  
Old 02-11-04, 10:30
priyarnair priyarnair is offline
Registered User
 
Join Date: Feb 2004
Posts: 1
help to insert an image file

hi
I need to insert an image (gif file image[eg. client
photograph]) to a
long raw (not blob/bfile type) data type from PLSQL.
[from sql plus and from
a DB procedure/trigger] , Please send me the script
for the same
cheers
priya
Reply With Quote
  #4 (permalink)  
Old 03-12-04, 14:15
heinuae heinuae is offline
Registered User
 
Join Date: Mar 2004
Location: Dubai
Posts: 1
Wink

Have a look at :

http://www.fawcette.com/javapro/2004...efault_pf.aspx

Should answer most of your Q's.....


H
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On