Azavea.Open.DAO.SQLite.SQLiteDescriptor.CreateDataAccessLayer C# (CSharp) Method

CreateDataAccessLayer() public method

Returns the appropriate data access layer for this connection. The default implementation returns a normal SQL data access layer, but this may be overridden in particular DB connection descriptors.
public CreateDataAccessLayer ( ) : IDaLayer
return IDaLayer
        public override IDaLayer CreateDataAccessLayer()
        {
            return new SQLiteDaLayer(this);
        }