I have a bunch of .asp pages that select image_date from an oracle table. The image_data was a long raw data type. The oracle tables were just update and the image_data is now a BLOB data type. Since the change my .asp pages wont display the image. What changes do i have to make to display my BLOB images?
Set rs = con.Execute("SELECT image_data FROM images where images.active_flag = 'Y' and image_id=" & target)
Response.BinaryWrite rs("image_data")
Set rs = con.Execute("SELECT image_data FROM images where images.active_flag = 'Y' and image_id=" & target)
Response.BinaryWrite rs("image_data")