MySQL Forums
Forum List  »  Newbie

Re: Can't MySQL handle images?!
Posted by: Claude Martin
Date: January 30, 2005 01:11PM

all you need is an id INT unsigned auto_increment and a filename VARCHAR (255)
then save the filename. or if they are not in the same directory save the full path.

CREATE TABLE `files` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
`file` VARCHAR( 255 ) NOT NULL ,
PRIMARY KEY ( `id` )
);

http://animalliberation.tk http://veganismus.ch
http://maqi.de http://tierrechtskochbuch.de

Options: ReplyQuote


Subject
Written By
Posted
January 29, 2005 01:09PM
January 29, 2005 03:09PM
January 29, 2005 08:49PM
Re: Can't MySQL handle images?!
January 30, 2005 01:11PM
January 30, 2005 05:14PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.