1

Need a little help with SQLite connection string. I’m using Mono.Data.Sqlite. I know If my database.sqlite resides in local computer then the format for connection string is “URI=file:" + "<Directory-Path>/database.sqlite" and it actually works for me.

But what will be the format of connection string for a network location. Assuming that I have my database on some server and given the following parameters:

Server = "swipe.example.com";
Username = "[email protected]";
Password = <Some Password>;
DatabasePath = "swipe.example.com/database.sqlite";

I have tried searching forums several times but found no solution at all. I will really appreciate If you could let me know.

Thanks

1 Answer 1

1

SQLite is serverless. Visit this link for more information : https://www.sqlite.org/serverless.html You can use http://www.sqlitening.com/

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.