On 14 Sep 2010, at 9:55am, Nimish Nayak wrote: > I was trying to figure out how to export the Database as an SQL File. > > I came across sqlite3_backup but it copies Db to Db. But i failed to get the > Db to sql file as dont by SqliteBrowser > > I can achieve this using .dump or .bachup in sqlite cli but how should i do > it using the C API's ?
Write your own code to create a text file. Or script the command-line tool to do it for you by issuing the '.dump' command on the command-line. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

