Re: [SQL] not really SQL but I need info on BLOBs

2004-05-31 Thread Jared Evans
I did something similar- a web application for online employer picture directory along with dynamic graphical output of the desk locations throughout the company (using the GD package). I kept the pictures in a separate directory and used links in the database. I set up a DB trigger that took car

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-10 Thread Theodore Petrosky
Denis, Interesting, have you had any experience using a SAN for the images? Do you know anyone that has successfully used a SAN to store images that are accessable to multiple servers? I do not, however the last place I worked was in the beginning stages of putting in a SAN. As it was explained,

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-09 Thread Denis Braekhus
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Theodore Petrosky wrote: | I am working on a project where the IT department is | pushing really hard to have all the images in the db. | I don't know what the agenda is. I am hopeful to come | up with reasons either why this is good or not good. We hav

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-07 Thread Jeff Boes
In the same vein ... We are at present using BLOBs to store images (but not very many) and generated output (mostly HTML and XML). The data being stored doesn't require BLOB use because of size; it's mostly the binary nature of the data. Lack of satisfaction with the BLOB support (generally diffi

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-06 Thread Andrei Bintintan
But... search the forums, or hope that somedoby else answers also. Best regards, Andy. - Original Message - From: "Theodore Petrosky" <[EMAIL PROTECTED]> To: "Andrei Bintintan" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, May 06, 2004 2:46

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-06 Thread Andrew Sullivan
On Thu, May 06, 2004 at 04:46:22AM -0700, Theodore Petrosky wrote: > Thanks for the reply. Are there (in your opinion) > reasons why you would choose to store the images in > the db? Transactional integrity. If there's a risk that people are going to be deleting, &c. these images, then you can e

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-06 Thread Theodore Petrosky
path. > > I see it this way more simple, maybe other have > other opinions. > > Best regards, > Andy. > > - Original Message - > From: "Theodore Petrosky" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, May 05, 2004 6:10 PM > Su

Re: [SQL] not really SQL but I need info on BLOBs

2004-05-05 Thread Andrei Bintintan
ards, Andy. - Original Message - From: "Theodore Petrosky" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 05, 2004 6:10 PM Subject: [SQL] not really SQL but I need info on BLOBs > Hi, > > I am starting a new project where I need to store a > lot of t

[SQL] not really SQL but I need info on BLOBs

2004-05-05 Thread Theodore Petrosky
Hi, I am starting a new project where I need to store a lot of tiff images. So the question beckons... which is better (not correct)? store a blob in the database and let the db manage the data or store the image in a directory and store the path to the data in the db. What are your opinions? Is