Automobile.Registrar.SQLiteClient.SQLiteClient C# (CSharp) Method

SQLiteClient() public method

Creates tables, if needed.
public SQLiteClient ( string dbName ) : System
dbName string Name of the file to use
return System
        public SQLiteClient(string dbName)
            : this(dbName, dbName == ":memory:")
        {
        }

Same methods

SQLiteClient::SQLiteClient ( string dbName, bool shared ) : System