Will SQLite work in a ClickOnce deployment?

And if that happens, what is the best practice regarding join strings? Just a relative path? | DataDirectory |

+3
source share
2 answers

SQ Lite should work fine in ClickOnce scripts. These are the zero configuration components. Components requiring configuration typically have trouble clicking once.

http://www.sqlite.org/

+2
source

I do not know about SQLite, but yes: I believe that you would like to use it |DataDirectory|with ClickOnce, as this indicates the area in the user profile where the data / settings of the application can be saved.

0

Source: https://habr.com/ru/post/1702968/


All Articles