-1

: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
4

1 に答える 1

0

発生しているエラーは1が原因です。nrowsncols変数は宣言されていません。それらは整数として宣言する必要があります。2.result変数はではchar **なくとして宣言する必要がありchar *result[50]ます。

したがって、結果配列ポインタ宣言をコメントアウトして、2行の下にコピーします。お役に立てれば。

int nrows, ncols;
char **result;

http://www.sqlite.org/c3ref/free_table.html

int sqlite3_get_table(
sqlite3 *db,          /* An open database */
const char *zSql,     /* SQL to be evaluated */
char ***pazResult,    /* Results of the query */
int *pnRow,           /* Number of result rows written here */
int *pnColumn,        /* Number of result columns written here */
char **pzErrmsg       /* Error msg written here */

);

于 2013-03-22T03:59:18.970 に答える