Maybe this will help:
SQLiteConnection.CreateFile("c:\\Ik.db");
Create a new database on the fly and execute a query on it. The query should be something like this:
CREATE TABLE IF NOT EXISTS [Setting](
[ID] INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
[Key] NVARCHAR(2048) NULL,
[Value] NVARCHAR(2048) NULL
);