What is the recommended way of using a SqliteConnection
object?
We are using sqlite inside a console application and I'm wondering if we should use a single connection for the entire application lifetime or create a new connection each time we need to query the data.
What is the best practice here?