:D sqlite(owens、allen)の決定的なガイドを読んでいて、このすばらしい本のコードのいくつかを実際に試してみることにし、コンパイルの問題に遭遇しました。私はこれらの問題のいくつかをクラウドソーシングし、同時にいくつかのCとSQLiteを学ぶことを望んでいました!おっと!
これをコンパイルすると、次の不思議なコンパイルエラーが発生します:gcc mo.c -om -lsqlite3
mo.c: In function ‘main’:
mo.c:22:44: error: ‘nrows’ undeclared (first use in this function)
mo.c:22:44: note: each undeclared identifier is reported only once for each function
it appears in
mo.c:22:52: error: ‘ncols’ undeclared (first use in this function)
mo.c:22:2: warning: passing argument 3 of ‘sqlite3_get_table’ from incompatible pointer
type [enabled by default]
/usr/local/include/sqlite3.h:2084:16: note: expected ‘char ***’ but argument is of
type ‘char * (*)[50]’
「警告:互換性のないポインタ型から'sqlite3_get_table'の引数3を渡す[デフォルトで有効]」と「注:「char *」が必要ですが、引数は「char *(*)[50]」型です。
問題のプログラムは以下のとおりです:stackoverflowに移行させることはできますか?<================================================= ==================================>
#include <stdio.h>
#include <sqlite3.h>
#include <stdlib.h>
int main()
{
sqlite3 *db;
char *zErr;
int rc;
char *sql;
char *result[50];
int j=0;
int i=0;
rc = sqlite3_open("foods-backup.db", &db);
if(rc) {
fprintf(stderr, "Can't open database: %s\n", sqlite3_errmsg(db));
sqlite3_close(db);
exit(1);
}
rc = sqlite3_get_table(db, sql, &result, &nrows, &ncols, &zErr);
for(i; i < nrows; i++) {
for(j; j < ncols; j++) {
/* the i+1 term skips over the first record,
which is the column headers */
fprintf(stdout, "%s", result[(i+1)*ncols + j]);
}
}
if(rc != SQLITE_OK) {
if (zErr != NULL) {
fprintf(stderr, "SQL error: %s\n", zErr);
sqlite3_free(zErr);
}
}
/* Free memory */
sqlite3_free_table(result);
// close database connection or something and return everything is okay i guess
sqlite3_close(db);
return 0;
} // end main