Go Back   CodingForums.com > :: Server side development > MySQL

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-30-2002, 06:24 AM   PM User | #1
atimmohd
New to the CF scene

 
Join Date: Oct 2002
Location: singapore
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
atimmohd is an unknown quantity at this point
save image in mysql database

hai...
can i store an image inside mysql database?
if can, please show me..
tanks
atimmohd is offline   Reply With Quote
Old 12-16-2007, 05:19 AM   PM User | #2
Hazhir
New to the CF scene

 
Join Date: Dec 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Hazhir is an unknown quantity at this point
Smile Yes You Can!

Take look :

sub addNews {
my $self = shift;
my $file = param('new_pic'); #this is a Image File

undef $file_cont;
binmode $file;
binmode $file_cont;
while (<$file>){
$file_cont .= $_;
}
my $sql = "INSERT INTO sys_news
SET Image= ". $self->{SQL}->quote($file_cont).", CreateDate=NOW()";
$self->{SQL}->do($sql); # this means $dbh->do($sql);
}
Hazhir is offline   Reply With Quote
Old 12-16-2007, 05:35 AM   PM User | #3
StupidRalph
Senior Coder

 
Join Date: Mar 2003
Location: Atlanta
Posts: 1,037
Thanks: 14
Thanked 30 Times in 28 Posts
StupidRalph is on a distinguished road
You can save a picture inside a DB but as several threads here suggest its usually better to save the PATH to the image file instead. Try using the search function to find some of those old threads.
__________________
Most of my questions/posts are fairly straightforward and simple. I post long verbose messages in an attempt to be thorough.
StupidRalph is offline   Reply With Quote
Old 07-28-2009, 02:42 PM   PM User | #4
nysmenu
Regular Coder

 
Join Date: Jul 2009
Posts: 143
Thanks: 0
Thanked 0 Times in 0 Posts
nysmenu is an unknown quantity at this point
how do you save the PATH? I've created a field for images in my form but, I can't cut and paste the file name to include. Any suggestions? Thanks
nysmenu is offline   Reply With Quote
Old 12-21-2010, 08:57 AM   PM User | #5
Wizzard of Jazz
New to the CF scene

 
Join Date: Dec 2010
Location: Denmark
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Wizzard of Jazz is an unknown quantity at this point
Use input field of type file. The file is sent to the server as $_FILES. var dump this and you'll be a long way.
Wizzard of Jazz is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:35 AM.


Advertisement
Log in to turn off these ads.