Azavea.Open.DAO.AbstractDaLayer.AbstractDaLayer C# (CSharp) Method

AbstractDaLayer() protected method

Instantiates the data access layer with the connection descriptor for the DB.
protected AbstractDaLayer ( IConnectionDescriptor connDesc, bool supportsNumRecords ) : System
connDesc IConnectionDescriptor The connection descriptor that is being used by this FastDaoLayer.
supportsNumRecords bool If true, methods that return numbers of records affected will be /// returning accurate numbers. If false, they will probably return /// FastDAO.UNKNOWN_NUM_ROWS.
return System
        protected AbstractDaLayer(IConnectionDescriptor connDesc, bool supportsNumRecords)
        {
            _connDesc = connDesc;
            _supportsNumRecords = supportsNumRecords;
        }