From: Warren Young Date: March 20 2007 10:39pm Subject: Re: dumping large binary file in database List-Archive: http://lists.mysql.com/plusplus/6460 Message-Id: <460062A2.4080108@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Dimitris Servis wrote: > > Is it possible to read data for a table from a binary file? Not through MySQL++ or the underlying C API. The interface between those libraries and the database server is SQL queries, which are text. The only option I can think of would be to stop the database server, translate your data file straight into the raw table format of your choice (InnoDB, for instance) and start the database server back up so it will see the new table.