c# - SQLite .dump command from SQLiteConnection object -
using sqlite .net, there way access .dump command or equivalent sqliteconnection class?
the .dump command part of sqlite command line program (shell.c), not part of sqlite library. so, unlikely provided .net connection class.
however, since source code sqlite command line program in public domain, , uses same library .net wrapper, possible translate c code .dump command c#. see function do_meta_command in this file.
Comments
Post a Comment