|
I used ODBC to connect three tables created by SQL, and used the following code in MFC
CString strSQL = "SELECT * from Course";
m_pSet-> m_pDatabase-> ExecuteSQL (strSQL);
Found that the ExecuteSQL () function does not return a value, so what can we do with it ??? |
|