Exemplo n.º 1
0
        public override SQLiteConnection CreateConnection()
        {
            SQLiteConnectionStringBuilder builder = new SQLiteConnectionStringBuilder();

            builder.DataSource = Filename.CleanPath(filename);

            return(new SQLiteConnection(builder.ToString()));
        }