lilimin191 发表于 2007-11-18 15:24:48

VC++编程是遇到的的一个重大头疼的错误

error C2146: syntax error : missing ';' before identifier 'm_pRecordset'
: error C2501: '_RecordsetPtr' : missing storage-class or type specifiers
: error C2501: 'm_pRecordset' : missing storage-class or type specifiers
error C2146: syntax error : missing ';' before identifier 'm_pConnection'
error C2501: '_ConnectionPtr' : missing storage-class or type specifiers
error C2501: 'm_pConnection' : missing storage-class or type specifiers
error C2146: syntax error : missing ';' before identifier 'm_pRecordset'
error C2501: '_RecordsetPtr' : missing storage-class or type specifiers
error C2501: 'm_pRecordset' : missing storage-class or type specifiers
这个错误很让我头疼,根据一些网友的建议我在"stdafx.h"中加入了
#import "D:\program files\common files\system\ado\msado15.dll" no_namespaces rename_namespace("AdoNS") rename("EOF" adoEOF")
可是问题一点都没有解决
请高人给指点以下,谢了

hillyuan 发表于 2007-11-18 22:52:58

Simply syntax error! Is it that 重大?

Faor example:
First sentence tell you losting a ";" before definition of m_pRecordset

pengweicai 发表于 2007-11-19 09:42:07

这些错误都有提示,这应该好修改吧。
最怕的是 程序通过,但是结果不对。

cowry 发表于 2007-11-24 19:56:13

这个问题是不是在使用集合类时候忘了在"stdafx.h"中添加afxtempl.h

ilovedaisy 发表于 2007-11-26 22:36:26

不是很详细

问题不是很详细

xiaolaichong 发表于 2007-11-29 11:23:28

C++真的很头疼

freefrompassion 发表于 2007-12-2 21:49:28

感觉楼主程序的问题,貌似以前我在VC++6.0下写的程序转到vs2005后编译出现错误一样,呵呵,很多问题说不太明白,可能是MFC类库版本升级带来的一些问题。_RecordsetPtr 好像是指针数组什么的,现在我都用C#,发觉语法检查严格其实也不是件坏事!

min2max 发表于 2007-12-15 10:04:18

编译问题还不好解决?哪行出错看哪行。
页: [1]
查看完整版本: VC++编程是遇到的的一个重大头疼的错误