Re: could not insert BLOB data type in a table

2001-07-25 Thread Ilya Martynov
>> Only use placeholders. $dbh->quote() is unreliable (and this fact is >> documented in DBI documentation). PD> Please show me the part of the documentation that you're referring to, PD> and please supply a counter-example. quote() is extremely useful for PD> producing SQL statements that will

Re: could not insert BLOB data type in a table

2001-07-25 Thread Paul DuBois
At 5:23 PM +0400 7/25/01, Ilya Martynov wrote: >PD> At 10:43 AM +0530 7/25/01, [EMAIL PROTECTED] wrote: >>> Hi, >>> >>> I just want to know how to insert a BLOB data type in a field of a >>> table. I want to put the binary data stream not the file link in the >>> filed. The language i m using

Re: could not insert BLOB data type in a table

2001-07-25 Thread Ilya Martynov
PD> At 10:43 AM +0530 7/25/01, [EMAIL PROTECTED] wrote: >> Hi, >> >> I just want to know how to insert a BLOB data type in a field of a >> table. I want to put the binary data stream not the file link in the >> filed. The language i m using is PERL5. PD> Use $dbh->quote() or placeholders to ins

Re: could not insert BLOB data type in a table

2001-07-24 Thread Paul DuBois
At 10:43 AM +0530 7/25/01, [EMAIL PROTECTED] wrote: >Hi, > >I just want to know how to insert a BLOB data type in a field of a >table. I want to put the binary data stream not the file link in the >filed. The language i m using is PERL5. Use $dbh->quote() or placeholders to insert the BLOB value

could not insert BLOB data type in a table

2001-07-24 Thread mysql
Hi, I just want to know how to insert a BLOB data type in a field of a table. I want to put the binary data stream not the file link in the filed. The language i m using is PERL5. Thanks in advance. Regards, Thakur Gyawali Nepal --