// Build the SQL string
// Remember to name a section of data in the Excel sheet using "Insert->Names" to be
// able to work with the data like you would with a table in a "real" database. There
// may be more than one table contained in a worksheet.
CString sSql = "SELECT field_1, field_2 "
"FROM demo_table "
"ORDER BY field_1";