Mar 29, 2006 #1 james0816 Programmer Jan 9, 2003 295 US how do you establish a file location in a mysql db? Say I have an picture located at c:\pictures\pic1.jpg. I think the format is something like '\\pictures\\pic1.jpg' but i'm missing something. can someone assist? thx
how do you establish a file location in a mysql db? Say I have an picture located at c:\pictures\pic1.jpg. I think the format is something like '\\pictures\\pic1.jpg' but i'm missing something. can someone assist? thx
Mar 31, 2006 #2 ggggus Programmer Jul 5, 2003 114 Is there a reason you don't just use a varchar field and enter the actual file location in the field? Code: INSERT INTO table_name (file_location_field_name) VALUES('c:\pictures\pic1.jpg'); *************************************** J. Jacobs http://www.piercedmedia.com Upvote 0 Downvote
Is there a reason you don't just use a varchar field and enter the actual file location in the field? Code: INSERT INTO table_name (file_location_field_name) VALUES('c:\pictures\pic1.jpg'); *************************************** J. Jacobs http://www.piercedmedia.com