#include "ODBCDSN.h"

// Constructor
ODBCDSN::ODBCDSN(CString strTable, CString strColumn, CString strCondition): ODBCRead(_T(""),strTable,strColumn,strCondition) {
    connectString();
    read();
};

// Connection string is not used for DSN connection
void ODBCDSN::connectString(void) {
    m_strFile.Empty();
    m_strDriver.Empty();
    m_strConnect.Empty();
}
