如何定义sqlite3 struct的静态指针? C ++

时间:2014-08-27 12:50:32

标签: c++ pointers static sqlite unresolved-external

我希望有一个指向sqlite3结构的静态指针,所以我可以打开一次与DB的连接,在运行时执行一些查询并在程序出口处关闭数据库连接。

(我链接了sqlite3 static lib,dll)

所以在我的班级标题中:

foo.h中:

#include "sqlite/sqlite3.h"

class foo
{
    public:
       static sqlite3 *db;
       static void connect();
}

Foo.cpp中:

#include "foo.h"

sqlite3 foo::*db = nullptr;

foo::connect(){

   //sqlite3 *db;   //<-this works
   char *zErrMsg = 0;
   int rc;

   rc = sqlite3_open("test.db", &db);

   if( rc ){
      fprintf(stderr, "Can't open database: %s\n", sqlite3_errmsg(db));
      exit(0);
   }else{
      fprintf(stderr, "Opened database successfully\n");
   }
   //sqlite3_close(db); // close connection when program is exiting. Not here.

}

我收到此错误:LNK2001:未解析的外部符号&#34; public static struct sqlite3 * foo :: db&#34; ....

1 个答案:

答案 0 :(得分:6)

你有一个指向sqlite3的指针,所以正确的定义语法是

sqlite3* foo::db = nullptr;

或只是

sqlite3* foo::db;

请注意,在取消引用之前,必须指向有效的sqlite3对象。