From: Warren Young Date: February 25 2005 6:33am Subject: Re: How to write backup application for MySQL? List-Archive: http://lists.mysql.com/plusplus/4004 Message-Id: <421EC6D6.5070001@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit He HongFu wrote: > > I want to write a backup application which want to provide a plugin > to back up and restore MySQL database. Does MySQL++ provides a way to > implement it? As far as I known, users always uses the built-in tools > of MySQL mysqldump, mysqlhotcopy to implement the backup job. But I > want to use built-in APIs to implement it directly. Is it possible? MySQL++ is just a C++ wrapper around the regular C APIs. It provides no special access to the internals of MySQL. Anything you can do with MySQL++, you can also do with libmysqlclient.