I am trying to establish a connection between SQL server and SQLite C interface. SQL stores data in .MDF and .LOG file-extension.
Is there any possiblility to fetch schema, data from above file extension?
I am trying to establish a connection between SQL server and SQLite C interface. SQL stores data in .MDF and .LOG file-extension.
Is there any possiblility to fetch schema, data from above file extension?
"We all know that SQLite is In memory database" is not true. At the opposite is based on files. anyway to get a nice example You can see at:
No, you cannot import SQL Server data files into SQLite, as those are totally unrelated products and store data in different formats.
You can, however, export your database as SQL and import that into SQLite. Note, however, that both databases use slightly different SQL dialects, so you may have to correct generated SQL files by hand before thay can be imported into SQLite.