我正在尝试将我的 sqlite 数据库传递给一个函数,然后再传递给另一个函数。这是我的代码。
//database Name
// Create a handle for database connection, create a pointer to sqlite3
sqlite3 *dataDB;
//I send it through to the function here
// Execute the query for creating table
retval = sqlite3_exec(dataDB,create_students,0,0,0);
我的原型:
int readInFiles(sqlite3 ** dataDB);
void addCourse(sqlite3 ** dataDB, struct course,int k);
从readInFiles
函数内部调用:
addCourse(&dataDB,deg,k);
这是我的错误:
"database.c", line 50: warning: argument #1 is incompatible with prototype:
prototype: pointer to pointer to struct sqlite3 {} : "database.h", line 51