Abshagen, Martin RD-AS2 wrote:
> Can a backup mechanism be implemented by means of the current Sqlite-API?

Well, no, but the database is a single file, so you can back it up by 
copying the file.

If you are concerned about other processes accessing the database while 
you are copying it, have your program start an exclusive transaction 
before the copy,and roll it back after the copy.

HTH
Dennis Cote
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to