|
|
代码中频繁用到一个结构体sqlite3_stmt,应该是用来存储select结果集的,但是没有找到这个结构的定义处,只有在sqlite.h.in文件中有一句
- typedef struct sqlite3_stmt sqlite3_stmt;
复制代码
然而找不到struct sqlite3_stmt的定义,我不太明白这个sqlite.h.in形式的文件应该怎么读合适。
在找到一句vdbeInt.h找到一句
- ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_compile() is really a pointer to an instance of this structure.
复制代码
this structure指的是struct Vdbe。但还是未找到struct sqlite3_stmt。 |
|