I need an .asp page to generate a simple list of rows from an oracle 10g table that has four photos stored in four blob columns.
my select statement is something like:
select item_name, color, size, photo_front, photo_back, photo_left, photo_right from myitems
I just want to display this data in a simple "catalog like" list in a table when the user opens the .asp page.
I have managed to get blobs out of oracle before for one item at at time but it requires the user to click on each individual item. I havnt been able to modify that code so it will display all the photos when the page comes up, and i havnt found any other way that i could make work so far.
I'm sure i must be making this harder than it actually is. Can anybody point me in the right direction? I've searched all over and cant find anything that works.
thanks
my select statement is something like:
select item_name, color, size, photo_front, photo_back, photo_left, photo_right from myitems
I just want to display this data in a simple "catalog like" list in a table when the user opens the .asp page.
I have managed to get blobs out of oracle before for one item at at time but it requires the user to click on each individual item. I havnt been able to modify that code so it will display all the photos when the page comes up, and i havnt found any other way that i could make work so far.
I'm sure i must be making this harder than it actually is. Can anybody point me in the right direction? I've searched all over and cant find anything that works.
thanks