RE: Problem while insert binary

2004-05-25 Thread Victor Pendleton
What error message are you getting or how are you verifying that the data is not loading correctly? -Original Message- From: giovanni cordeschi To: [EMAIL PROTECTED] Sent: 5/25/04 11:23 AM Subject: Problem while insert binary Using PHP i'm not able to insert a binary variable i

Re: Problem while insert binary

2004-05-25 Thread Michael Kruckenberg
giovanni cordeschi wrote: Using PHP i'm not able to insert a binary variable into a field of type mediumblob of mysql. The command I've used is: $cfg_Query = "Insert into (operazioni, datacreazione) Values ('".$contents."', Now())"; $result = mysql_query($cfg_Query, $conn) It doesn't appear the

Problem while insert binary

2004-05-25 Thread giovanni cordeschi
Using PHP i'm not able to insert a binary variable into a field of type mediumblob of mysql. The command I've used is: $cfg_Query = "Insert into (operazioni, datacreazione) Values ('".$contents."', Now())"; $result = mysql_query($cfg_Query, $conn) where $contents is the binary variable. Can an