View Single Post
  #7  
Old 07-19-2009, 08:15 AM
melinite melinite is offline
Member
 
Join Date: Nov 2008
Posts: 12
avoid storing Binary Large OBjects in db, specifically image files which is something you can store in the OS filesystem and litespeed can serve as static resource very efficiently.

Blob fields are returned as binary stream from mysql. You need to create a servlet to return the object to client as a specific mime type (aka .jpg, .png,.gif)

If you still have trouble i suggest you google JSP servlet BLOB
Reply With Quote