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 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-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

Retrieve a binary file from a mysql database

2003-09-12 Thread karim bernardet
Hello, Is it possible to retrieve a file stored in a blob field using a mysql client from a host which is not the server ? Thanks for your help, Karim. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

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,