July 20, 2006 at 5:50 am
I understand that you are able to save and retrieve picture files to a SQL server, is this correct, if so can someone point me in the direction on how to achieve this? plus is it correct that if you use a stored procedure to retrieve the picture it will wait until the picture is completely "built" before releasing it?
July 21, 2006 at 7:17 pm
Mick,
Yes... you can save pictures in IMAGE datatypes... but it's a really bad thing to do for more reasons than I'd care to post here...
Most folks have seen the light and simply store the path/filename of the picture and pass that to whatever external app that may be available. Is there a reason why you couldn't do that?
--Jeff Moden
Change is inevitable... Change for the better is not.
July 24, 2006 at 1:58 am
It's something I'd like to learn/play around with, even if it's something I wouldn't use
July 24, 2006 at 2:04 am
For performance reasons even I would put those files to the filesystem and store just the path but if security it the main objectiv then you can store the images into the DB (as many document management applications are doing) For this you have to write a client side app which handels the images (in VB, Delphi...) So you can assign the image to the parameter of a stored proc
Bye
Gabor
July 24, 2006 at 2:12 am
ok thanks, will try and learn how to do it if I can
July 25, 2006 at 11:40 am
Here are a few articles which may help you...
http://www.aspfaq.com/show.asp?id=2149
http://www.dbazine.com/sql/sql-articles/larsen13
http://support.microsoft.com/kb/308042/EN-US/
Ryan Randall
Solutions are easy. Understanding the problem, now, that's the hard part.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply