RE: IMAGES/PICTURES-MYSQL

2007-11-24 Thread puntapari
://www.nabble.com/IMAGES-PICTURES-MYSQL-tf4845682.html#a13923823 Sent from the MySQL - General mailing list archive at Nabble.com. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

RE: IMAGES/PICTURES-MYSQL

2007-11-22 Thread puntapari
the IMAGE folder in other path, but it doesn´t work. I don´t know specifically which is the server path. Thanks to everybody! Ibai -- View this message in context: http://www.nabble.com/IMAGES-PICTURES-MYSQL-tf4845682.html#a13894350 Sent from the MySQL - General mailing list archive at Nabble.com

IMAGES/PICTURES-MYSQL

2007-11-20 Thread puntapari
://www.nabble.com/file/p13863505/7.jpg Thank you very much! *Sorry for my english -- View this message in context: http://www.nabble.com/IMAGES-PICTURES-MYSQL-tf4845682.html#a13863505 Sent from the MySQL - General mailing list archive at Nabble.com. -- MySQL General Mailing List For list archives

Re: IMAGES/PICTURES-MYSQL

2007-11-20 Thread Martijn Tonies
Hi, I have read some messages about this topic but i haven´t resolved my problem yet. I am using mySQL Query Browser to make de schema. And i have a table (product) where there are some attributes (producto, precio, nUds,tipo)(spanish). All are relationated with one product (ex: heineken beer).

Re: IMAGES/PICTURES-MYSQL

2007-11-20 Thread puntapari
Hello! I have read that. But i have not idea what i have to do. Because i´m amateur in this topic. Thank you -- View this message in context: http://www.nabble.com/IMAGES-PICTURES-MYSQL-tf4845682.html#a13865352 Sent from the MySQL - General mailing list archive at Nabble.com. -- MySQL

RE: IMAGES/PICTURES-MYSQL

2007-11-20 Thread Jerry Schwartz
. Farmington, CT 06032 860.674.8796 / FAX: 860.674.8341 www.the-infoshop.com www.giiexpress.com www.etudes-marche.com -Original Message- From: puntapari [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 3:38 PM To: mysql@lists.mysql.com Subject: Re: IMAGES/PICTURES-MYSQL

Re: Images to MySql Database in PHP or JAVA

2005-02-24 Thread Philippe Poelvoorde
Hi, Have you try google ? http://www.google.fr/search?hl=frq=storing+image+in+mysqlbtnG=Recherche+Googlemeta= I see pretty much a lot of stuff there ;) btw, storing image in a table in considering a bad practice, let the filesystem handle it it does it more efficiently. I would suggesdt to write

Images to MySql Database in PHP or JAVA

2005-02-23 Thread Christopher Molnar
Hello list- I am programing both in Java and PHP. Can anyone point me to sample code for either on saving an image to a table? Thanks, -Chris -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Images to MySql Database in PHP or JAVA

2005-02-23 Thread Mohsen Pahlevanzadeh
Dear member,you can visit: http://dev.mysql.com/doc/connector/j/en/index.html http://dev.mysql.com/doc/mysql/en/php.html Hello list- I am programing both in Java and PHP. Can anyone point me to sample code for either on saving an image to a table? Thanks, -Chris -- MySQL General Mailing

Storing Images In MySQL

2004-09-29 Thread Ed Lazor
I figured I'd post a follow-up to the discussion earlier this week on issues relating to storing images in MySQL. In my opinion. Whether you store images in MySQL ultimately depends on whether you can setup a caching accelerator (like Squid) between you and your visitors. Storing images

images from MySQL backend used with MS-Access 2000 frontend

2004-02-01 Thread Yuri Oleynikov
Hi everyone, I am new to MySQL. I am starting a database project for a medium-sized medical office. I chose MS-Access (on 10-terminal pre-existing Win2K intranet) for rapid front-end dev and familiarity to the existing users. I plan to use MySQL on Linux server for backend for its speed, great

RE: images from MySQL backend used with MS-Access 2000 frontend

2004-02-01 Thread Andrew Braithwaite
files in that scenario and can be slow in retrieving files in a single directory containing large amounts of files. Cheers, Andrew -Original Message- From: Yuri Oleynikov [mailto:[EMAIL PROTECTED] Sent: Sunday 01 February 2004 16:33 To: [EMAIL PROTECTED] Subject: images from MySQL backend

Re: images from MySQL backend used with MS-Access 2000 frontend

2004-02-01 Thread colbey
Read this article for it's design on database storage.. I have several big implementations on this design which are fast, reliable and scalable (one of them in the medical field aswell) http://php.dreamwerx.net/forums/viewtopic.php?t=6 On Sun, 1 Feb 2004, Yuri Oleynikov wrote: Hi everyone,

Re: inserting images to mysql - is it possible?

2003-06-30 Thread Bob Ostermann
Armand- Why is it not recommended to store images in a database? I've not heard this... bob. At 09:51 PM 6/29/03 +0200, you wrote: Hi, You have to insert a new blob field where you can store binary data. But it is not recommanded to store images in a database. I recommande you to store

Re: inserting images to mysql - is it possible?

2003-06-30 Thread Gerald Jensen
Subject: Re: inserting images to mysql - is it possible? Armand- Why is it not recommended to store images in a database? I've not heard this... bob. At 09:51 PM 6/29/03 +0200, you wrote: Hi, You have to insert a new blob field where you can store binary data. But it is not recommanded

Re: inserting images to mysql - is it possible?

2003-06-30 Thread Bob Ostermann
AM Subject: Re: inserting images to mysql - is it possible? Armand- Why is it not recommended to store images in a database? I've not heard this... bob. At 09:51 PM 6/29/03 +0200, you wrote: Hi, You have to insert a new blob field where you can store binary data

RE: inserting images to mysql - is it possible?

2003-06-30 Thread Benjamin Davis
check out http://www.phpbuilder.com thay have a lot of things and that is one off them. -- eschew obfuscation. -Original Message- From: Digital Directory USA [mailto:[EMAIL PROTECTED] Sent: 29 June 2003 19:28 To: [EMAIL PROTECTED] Subject: inserting images to mysql - is it possible? I

inserting images to mysql - is it possible?

2003-06-29 Thread Digital Directory USA
I am new to php and mysql, I have searched looked over and cannot find a way to do this... can it be done? I have set up the following in mysql. How do I upload the product images to the pPhoto column. Any suggestions? ds_produc Field Type Attributes Null Default Extra pID

Re: inserting images to mysql - is it possible?

2003-06-29 Thread Armand Turpel
Hi, You have to insert a new blob field where you can store binary data. But it is not recommanded to store images in a database. I recommande you to store images on a server filesystem and only the reference to the images in a database. Armand Digital Directory USA wrote: I am new to php

Re: inserting images to mysql - is it possible?

2003-06-29 Thread colbey
If you want to store images in the database, use a blob columntype.. And take a look at this example alot of people have based mysql binary storage off: http://www.php4.com/forums/viewtopic.php?t=6 good luck On Sun, 29 Jun 2003, Digital Directory USA wrote: I am new to php and mysql, I have

Storing Images in MySQL

2003-03-28 Thread vernon
Hey all, I'm using phpNewsAds and am wanting to store images in MySQL. I have this working on my Red Hat 7.2 Box and am moving to a new server running Red Hat 7.3 and of course, after moving the database the images are not being dispalyed. The database, however, is working. I'm assuming

RE: Storing Images in MySQL

2003-03-28 Thread Dathan Vance Pattishall
: Storing Images in MySQL Hey all, I'm using phpNewsAds and am wanting to store images in MySQL. I have this working on my Red Hat 7.2 Box and am moving to a new server running Red Hat 7.3 and of course, after moving the database the images are not being dispalyed. The database, however, is working

RE: Storing Images in MySQL

2003-03-28 Thread William R. Mussatto
: Storing Images in MySQL Hey all, I'm using phpNewsAds and am wanting to store images in MySQL. I have this working on my Red Hat 7.2 Box and am moving to a new server running Red Hat 7.3 and of course, after moving the database the images are not being dispalyed. The database, however

Re: images with mysql

2003-03-21 Thread lasse
sure you can. And i don't mind you disagreeing with me either =) Although, if the solution/site is meant to be used by other than people who know something about the webserver i don't think it's a good solution. I can imagine writing something that reads the htaccess-file and edits it... but i

RE: images with mysql

2003-03-21 Thread Paul Larue
-recipients:; no To-header on input Cc: [EMAIL PROTECTED] Subject: Re: images with mysql sure you can. And i don't mind you disagreeing with me either =) Although, if the solution/site is meant to be used by other than people who know something about the webserver i don't think it's a good solution

Re: images with mysql

2003-03-21 Thread B. van Ouwerkerk
Not an issue since you don't need to edit the htaccess file for every file. You set it for the whole directory. The only reason for preventing ppl to access files would be theft of bandwith. If you worry about ppl being able to get the images then you shouldn't publish them at all. You can't

Re: images with mysql

2003-03-20 Thread stefano . cardo
Hi! I have a problem with my MySQL I need to have some a images related with an item for example -- ! author ! date of birth an death ! image! -- How can I define the field for the images? I have read that

RE: images with mysql

2003-03-20 Thread Simon Green
a bit. Simon -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 20 March 2003 09:34 To: [EMAIL PROTECTED] Subject: Re: images with mysql Hi! I have a problem with my MySQL I need to have some a images related with an item for example

Re: images with mysql

2003-03-20 Thread Lai Liu-yuan
I am now having a database storing images of chinese characters for research purpose. I wrote a program to store and retrieve them. My images are of type ppm. This is how I designed my table: mysql describe poor; +++--+-+-+---+ | Field | Type

Re: images with mysql

2003-03-20 Thread B. van Ouwerkerk
IMHO it's better to store a link. I have seen databases (not MySQL) getting corrupted because the file inserted was to big. For the visitor it doesn't really matter whether you put it into the database or not. A link is less difficult and you don't have to retrieve pictures from the database

Re: images with mysql

2003-03-20 Thread Lai Liu-yuan
Well, this may be off topic. In my case, I store tens of thousands of images, gradually growing. All of them are quite small, most around 30*30 gray scale. Would it still be faster to store them on disk? On Thu, 20 Mar 2003 13:57:06 +0100 B. van Ouwerkerk [EMAIL PROTECTED] wrote: IMHO it's

Re: images with mysql

2003-03-20 Thread walt
the child processes handle getting the images. 5. Mysql will not cache the images. The OS however will cache disk reads. 6. The database has a finite set of resources. You can add many file servers, each specific to what type of image you're pulling. We store stuff by date so we know to pull 1998

Re: images with mysql

2003-03-20 Thread B. van Ouwerkerk
I assume it is, have not tested it.. If you need to fetch the files from the database your app needs to wait until it has recieved the data. If you only store name/path info it will take less time to fetch the data, ship it off to the browser which can start fetching the images without

Re: images with mysql

2003-03-20 Thread lasse
hey all.. new to the list. Just my 5 cents... I think it's better to store images in the database, sure you loose a bit in performance, but it's easier to code. The way i've done it before is always a separate render.php (or what ever) that compares the users rights to view that image, get's the

Re: images with mysql

2003-03-20 Thread B. van Ouwerkerk
You can use other ways to protect your images from linking by others. Like with Apache and htaccess.. I don't agree with you on your opinion that it's easier to code. If you insert a link into your database all you have to do is retrieve it and push the link to the browser. B. At 20:18

Storing images in MySQL bad idea, performance-wise?

2002-07-08 Thread René Fournier
I'm working on a simple content management system that uses PHP and MySQL for updating a web site's text (stored in a MySQL database). (The PHP scripts that do the updating (my stuf) live on one web server, the actual DB data to be updated (my client's stuff) live on another.) So far, I've

Re: Storing images in MySQL bad idea, performance-wise?

2002-07-08 Thread Gerald R. Jensen
a search of the list archive for 'blob versus file' and read some informed opinions. Gerald Jensen - Original Message - From: René Fournier [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, July 08, 2002 5:34 PM Subject: Storing images in MySQL bad idea, performance-wise

Images in MySql

2002-01-29 Thread Victoria Reznichenko
ETK querie look like to call the and view the image. Is there any documentation ETK specificaly geared towards to images in mysql. You can store images in database using blob data type, see http://www.mysql.com/doc/B/L/BLOB.html In other way, you can store references to images

Images in MySql

2002-01-28 Thread Eric Torr Klopper
documentation specificaly geared towards to images in mysql. Any help on the matter would be greatly appreciated. Thank you Eric Torr Klopper Thrasher Technologies +27 82 219 3994 - Before posting, please check: http

RE: Images in MySql

2002-01-28 Thread John Lodge
[mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 12:31 PM To: [EMAIL PROTECTED] Subject: Images in MySql Hi all. Eric here from South Africa. I'm fairly new at using mysql and need to access images via a php website. What is the best way to store images or reference to images like jpg

storing images in MYSQl database

2001-09-22 Thread phani krishna
hi , how to store the images in mysql database and how to retrieve the images onto teh VB form.how to do it. please mail me the suggestions. thanx phani = S.V.PHANI KRISHNA STESALIT LIMITED 10,BELVEDERE ROAD, ALIPORE KOLKATTA

Re: storing images in MYSQl database

2001-09-22 Thread Carl Troein
phani krishna writes: how to store the images in mysql database and how to retrieve the images onto teh VB form.how to do it. What about it? Lemme guess, you're wondering how to do it, right? Two points: 1) Images are just like any other data. Just store them in a BLOB. As with all other

inserting images in mysql tables

2001-06-19 Thread Felicia
I am new to mysql. I am attempting to place images in one of my columns. As for my table structure, I have gotten as far as: image blob NOT NULL, How should I proceed? Thanks a bunch Get free email and a permanent address

Re: inserting images in mysql tables

2001-06-19 Thread Tyler Longren
you should probably just store the images on your server, and provide the location to the image in the table...much quicker. Tyler - Original Message - From: Felicia [EMAIL PROTECTED] To: mysql post [EMAIL PROTECTED] Sent: Tuesday, June 19, 2001 11:03 AM Subject: inserting images

Re: inserting images in mysql tables

2001-06-19 Thread Cal Evans
images in mysql tables I am new to mysql. I am attempting to place images in one of my columns. As for my table structure, I have gotten as far as: image blob NOT NULL, How should I proceed? Thanks a bunch Get free email

images and mysql

2001-05-05 Thread J.Heegsma
Dear Sir/Madam, I use a mysql database on the web and use php to get information from it. Now I want to use pictures/images in the database. I've included a php script The information I get from the mysql database in a while statement. My question is, how do I get the picture available on the

Re: images and mysql

2001-05-05 Thread Zak Greant
This topic has been discussed many times on the PHP General (archived at http://marc.theaimsgroup.com/?l=php-general) and PHP DB (archived at http://marc.theaimsgroup.com/?l=php-db) mailing lists. Search the archives for the terms 'MySQL images blob' and you will find a wealth of posts. Good

Re: is it possible to store images in mysql db?

2001-02-18 Thread Jon Roig
Reply-To: [EMAIL PROTECTED] Date: Sat, 17 Feb 2001 11:43:20 + To: mysql list [EMAIL PROTECTED] Subject: is it possible to store images in mysql db? I want to store different file formats in a database like images (*.jpg) or audio files (*.mp3). Is it possible to do so in mysql

is it possible to store images in mysql db?

2001-02-17 Thread Nikhilesh Haval
I want to store different file formats in a database like images (*.jpg) or audio files (*.mp3). Is it possible to do so in mysql? -Nikhilesh - Before posting, please check: http://www.mysql.com/manual.php (the manual)

Re: is it possible to store images in mysql db?

2001-02-17 Thread clay bond
On Sat, 17 Feb 2001, Nikhilesh Haval wrote: I want to store different file formats in a database like images (*.jpg) or audio files (*.mp3). Is it possible to do so in mysql? Yeah, that's what BLOB is for--but why would you want to do that? Why not just store the path in the table, and

Re: is it possible to store images in mysql db?

2001-02-17 Thread Gerald R. Jensen
. If we store them as BLOBs in the database, we know exactly where they are. G. Jensen - Original Message - From: "clay bond" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 17, 2001 8:16 AM Subject: Re: is it possible to store images in mysql db? On Sat, 1

Re: is it possible to store images in mysql db?

2001-02-17 Thread Rus
5:52 PM Subject: Re: is it possible to store images in mysql db? Actually ... there are often some good reasons one might want to store pictures in BLOBs. For example, our integrated application gives the administrators at our various customer sites the ability to associate a series of icons

saving images from mysql to file

2001-02-06 Thread Phillip M.(Mike) Bishop
How do I save an images to a unix file that is saved in mysql? I know how to view the image with PHP and I know how to write a file to unix. I just can't get the data from mysql into a format that will allow me to read it then write it.

Re: saving images from mysql to file

2001-02-06 Thread Rolf Hopkins
at www.devshed.com - Original Message - From: "Phillip M.(Mike) Bishop" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 4:01 Subject: saving images from mysql to file How do I save an images to a unix file that is saved in mysql? I know how to view the image with

Re: saving images from mysql to file

2001-02-06 Thread Phillip M.(Mike) Bishop
lip M.(Mike) Bishop\" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 4:01 Subject: saving images from mysql to file How do I save an images to a unix file that is saved in mysql? I know how to view the image with PHP and I know how to write a file to unix. I just

Re: saving images from mysql to file

2001-02-06 Thread Rolf Hopkins
ebruary 07, 2001 10:49 Subject: Re: saving images from mysql to file Ok I have 2000 images in a database that I want to move out of the database and save the image as a file and place the url to the image in the database. But I can\'t figure out how to get them out and written to a file to do t