>I have SQLite schema in an ascii file. I would like to be able to load >this schema via SQLite C-API. How do I do this?
You can look at the source code for the SQLite shell and see how it implements the .read command, but it may be simpler just to invoke the SQLite shell using system() or exec(). Regards