atwellpub
atwellpub

Reputation: 6010

Prepare code to programmatically create SQLite database - exporting template

In Microsoft Visual Express is there a way to export the SQLite database I've created through the Express interface into a code format so I can have it generated on first install by my customers?

I'd like to take the easiest way to do this without having to manually prepare all the code structure.

I was unable to find any sort of export feature. Any advice?

This resource will help me execute the code once I have it prepared, but I've 12 tables and some of them should come pre-populated, so being able to have the batch code will help.

Upvotes: 1

Views: 475

Answers (1)

shriek
shriek

Reputation: 5197

If it's just an SQLite database you could just publish the file with the rest of your program since it's a normal file without any dependencies.

Upvotes: 1

Related Questions