Re: How to load binary data with Perl DBI?

2002-03-10 Thread Jeremy Zawodny
On Sun, Mar 10, 2002 at 09:59:09AM +0200, Toomas Vendelin wrote: > It doesn't look "same way" :(. Normally I've read data from a file > on a client's machine using Perl's read function like this > > while(read($file, $data, 1024)) > { > print TO $data; > } > > to write it from $file on cli

Re[2]: How to load binary data with Perl DBI?

2002-03-09 Thread Toomas Vendelin
Hello Paul, Thank you for a quick reply. It doesn't look "same way" :(. Normally I've read data from a file on a client's machine using Perl's read function like this while(read($file, $data, 1024)) { print TO $data; } to write it from $file on client's computer to a file associated with

Re: How to load binary data with Perl DBI?

2002-03-09 Thread Paul DuBois
At 16:39 +0200 3/9/02, [EMAIL PROTECTED] wrote: >Hello. > >How to load binary data into a table using >Perl DBI module (the data is uploaded from a HTML >form)? Same way you load any other kind of data. Use placeholders or the quote() function. > >I failed to find any information on MySQL site

How to load binary data with Perl DBI?

2002-03-09 Thread mysql
Hello. How to load binary data into a table using Perl DBI module (the data is uploaded from a HTML form)? I failed to find any information on MySQL site. Thanks in advance. - Before posting, please check: http://www.mysq