求大神讲解MFC中操作VFP数据库时operator/operand type mismatch 出现错误的地方通常在哪儿呀?
用MFC编写学生成绩管理系统,用了VFP数据库~在登录点击确定时需用数据库的用户表,我已经创建了,但是在调用sql语句就出现了那个operator/operand type mismatch的错误~
strSQL.Format("select * from USERS where USER_ID='%s' AND USER_PASS='%s' AND USER_TYPE='%d'",
m_name,m_password,type);
recordset->Open(AFX_DB_USE_DEFAULT_TYPE,strSQL);