vote up 1 vote down star

Using SQLite from .net, Is there a way to access the .dump command or something equivalent from the SQLiteConnection class?

flag

1 Answer

vote up 2 vote down check

The .dump command is part of the sqlite command line program (shell.c), not part of the sqlite library. So, it is unlikely to be provided by a .net connection class.

However, since the source code for the sqlite command line program is in the public domain, and uses the same library as the .net wrapper, it would be possible to translate the C code for the .dump command to C#. See the function do_meta_command in this file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.