Versionr.LocalDB.LocalDB C# (CSharp) Method

LocalDB() private method

private LocalDB ( string path, SQLite flags ) : System
path string
flags SQLite
return System
        private LocalDB(string path, SQLite.SQLiteOpenFlags flags) : base(path, flags)
        {
            Printer.PrintDiagnostics("Local DB Open.");
            if ((flags & SQLite.SQLiteOpenFlags.Create) != 0)
            {
                PrepareTables();
            }
        }