不显示删除回复显示所有回复显示星级回复显示得分回复 在调用某函数时出现如下错误,大家帮我看看是哪里的问题?
error:expected declaration specifiers or ‘...’ before string constant
error: expected declaration specifiers or ‘...’ before string constant
error: expected declaration specifiers or ‘...’ before string constant
error: expected declaration specifiers or ‘...’ before string constant
error: expected declaration specifiers or ‘...’ before ‘errmsg’
整个代码是这样的
1,头文件(有可能有问题)
2,然后我在网上引用的两个函数(目的:将文件中内容导入到sqlite3数据库中的表中)
http://www.sqlite.com.cn/bbs/topicdisp.asp?tid=903
3,主函数,建立数据库及表
在主函数中调用其中一个函数:ImportData("test.db","test","test.txt",",", errmsg);
就是调用这一行出错了
是不是头文件的问题,需要源代码吗?比较多所以没贴出来
[解决办法]
头文件中ImportData的定义部分可能有问题,应该是这样的:
int ImportData(char *dbfile, char *zTable, char *zFile, char *separator, char *errmsg);
[解决办法]
先检查一下头文件中,关于ImportData函数的声明到底是个啥?