DataColumn question
-
I have a database table that is bound to a report. One of the fields is an Int32 type that stores the id of a jpg image. This has been done to reduce database storage. I know I can create a runtime column and fill it with the appropriate images but there's a performance issue with that. The images are fairly large so I would like to store them as a WeakReference. (Or some kind of dynamic access) Can anything be acomplished along this line? Anything!
The mind is like a parachute. It doesn’t work unless it’s open.
-
I have a database table that is bound to a report. One of the fields is an Int32 type that stores the id of a jpg image. This has been done to reduce database storage. I know I can create a runtime column and fill it with the appropriate images but there's a performance issue with that. The images are fairly large so I would like to store them as a WeakReference. (Or some kind of dynamic access) Can anything be acomplished along this line? Anything!
The mind is like a parachute. It doesn’t work unless it’s open.
Check out the Low impact images article by Pete O'Hanlon. It's neat. Also check out Sacha's reply/message. Should help in the Weak Reference :)
I bug