VC6.0中访问Access数据库的问题
我在VC6.0中用ADO访问Access数据库在StdAfx.h文件中加入了如下语句:
#import "c:\program files\common files\system\ado\msado15.dll"
但是在编译的时候总是提示错误说
f:\vs6projects\personal\adotest\debug\msado15.tlh(409) : warning C4146: unary minus operator applied to unsigned type, result still unsigned
f:\vs6projects\personal\adotest\debug\msado15.tlh(1318) : error C2629: unexpected 'short ('
f:\vs6projects\personal\adotest\debug\msado15.tlh(1318) : error C2238: unexpected token(s) preceding ';'
到底是什么问题?
在google里找过一些解决方法,
例如把 #import "c:\program files\common files\system\ado\msado15.dll"
改为 #import "c:\program files\common files\system\ado\msado15.dll"\
但都不行,还是提示那个错误
请问怎么解决?