public ReferencesTable(Session session, JET_TABLEID table) { Session = session; Table = table; _columnDic = null; Columns = new DefaultView(this); }
public ReferencesTable(Session session, JET_DBID dbid, string tableName, OpenTableGrbit grbit) { Session = session; JET_TABLEID tableid; Api.OpenTable(session, dbid, tableName, grbit, out tableid); Table = tableid; _columnDic = null; Columns = new DefaultView(this); }