Re: Retrieve a binary file from a mysql database

2003-09-14 Thread karim bernardet
Paul DuBois wrote: At 5:24 PM +0200 9/13/03, karim bernardet wrote: [EMAIL PROTECTED] wrote: From mysql manual: If you want to create the resulting file on some other host than the server host, you can't use SELECT ... INTO OUTFILE. In this case you should instead use some client program like

Re: Retrieve a binary file from a mysql database

2003-09-13 Thread Paul DuBois
At 5:24 PM +0200 9/13/03, karim bernardet wrote: [EMAIL PROTECTED] wrote: From mysql manual: If you want to create the resulting file on some other host than the server host, you can't use SELECT ... INTO OUTFILE. In this case you should instead use some client program like mysqldump --tab or mysq

Re: Retrieve a binary file from a mysql database

2003-09-13 Thread karim bernardet
[EMAIL PROTECTED] wrote: From mysql manual: If you want to create the resulting file on some other host than the server host, you can't use SELECT ... INTO OUTFILE. In this case you should instead use some client program like mysqldump --tab or mysql -e "SELECT ..." > outfile to generate the file

Re: Retrieve a binary file from a mysql database

2003-09-12 Thread colbey
>From mysql manual: If you want to create the resulting file on some other host than the server host, you can't use SELECT ... INTO OUTFILE. In this case you should instead use some client program like mysqldump --tab or mysql -e "SELECT ..." > outfile to generate the file On Fri, 12 Sep 2003