C ++:sqlite3使用errno代码吗?

时间:2013-03-25 15:04:07

标签: c++ sqlite errno

我使用的是sqlite3 C ++ api。运行后

int rc = sqlite3_exec(db, pSQL, 0, 0, 0);

返回rc SQLITE_OK的{​​{1}}结果。

此外,我已经测试了errno != 0cout << strerror(errno) << endl的结果始终如一: 没有这样的文件或目录

换句话说,我知道sqlite3有自己的一组“返回代码”(即SQLITE_OK)。但是,sqlite3是否正确/一致地使用errno代码?也就是说,如果我的应用程序的另一部分使用全局errno变量,我应该在每次调用sqlite3_exec后重置它吗?

感谢。


我的代码的更完整示例:

    const int errno_start = errno;
    if (errno_start > 0) {
        std::cout << "errno=" << strerror(errno) << std::endl;
        std::cout << "errno_start=" << strerror(errno_start) << std::endl;
    }
    // prepare sql statement
    const char *pSQL;
    pSQL = "CREATE TABLE "
            "IF NOT EXISTS "
            "test1"
            "("
            "id INTEGER,"
            "field VARCHAR(32),"
            "value DOUBLE,"
            "timestamp DATETIME"
            ")";

    //int rc = sqlite3_exec(db, pSQL, callback, 0, &szErrMsg);
    int rc = sqlite3_exec(db, pSQL, 0, 0, 0);
    const int errno_here1 = errno;
    if (errno_here1 > 0) {
        std::cout << "errno_start=" << strerror(errno_start) << ", errno_here1="
                << strerror(errno_here1) << std::endl;
    }
    if (rc != SQLITE_OK) {
        std::cout << "SQL Error: " << szErrMsg << std::endl;
        sqlite3_free(szErrMsg);
    } else {
        std::cout << "initialize successful" << std::endl;
    }

此代码段的结果是:

  

errno_start =成功,errno_here1 =没有这样的文件或目录

     

初始化成功

2 个答案:

答案 0 :(得分:2)

你应该从不依赖errno中的值来持续超出下一次OS调用,因为几乎所有可能失败的操作系统调用(即几乎所有操作系统调用)都可以设置它。至少有一件事:errno现在通常是幕后的线程本地。但是,当您调用它时,库可能会设置errno,因此在系统调用失败后立即保存该值是明智的,否则请忽略它。

SQLite在其自身内部进行OS调用(当然,当它访问数据库文件时),因此它可以将errno设置为几乎任何东西。它遇到的错误是在它内部处理的;如果出现问题,它会告诉您使用自己的,记录在案的错误机制。从来没有包含来自errno的任何信息(实际上它是不可移植的; SQLite也在Windows上运行,并且使用不同的错误代码报告机制)。

答案 1 :(得分:0)

sqlite3返回一个结果代码,该代码对应于sqlite3 API中列出的一组DEFINES:

#define SQLITE_OK           0   /* Successful result */
/* beginning-of-error-codes */
#define SQLITE_ERROR        1   /* SQL error or missing database */
#define SQLITE_INTERNAL     2   /* Internal logic error in SQLite */
#define SQLITE_PERM         3   /* Access permission denied */
#define SQLITE_ABORT        4   /* Callback routine requested an abort */
#define SQLITE_BUSY         5   /* The database file is locked */
#define SQLITE_LOCKED       6   /* A table in the database is locked */
#define SQLITE_NOMEM        7   /* A malloc() failed */
#define SQLITE_READONLY     8   /* Attempt to write a readonly database */
#define SQLITE_INTERRUPT    9   /* Operation terminated by sqlite3_interrupt()*/
#define SQLITE_IOERR       10   /* Some kind of disk I/O error occurred */
#define SQLITE_CORRUPT     11   /* The database disk image is malformed */
#define SQLITE_NOTFOUND    12   /* Unknown opcode in sqlite3_file_control() */
#define SQLITE_FULL        13   /* Insertion failed because database is full */
#define SQLITE_CANTOPEN    14   /* Unable to open the database file */
#define SQLITE_PROTOCOL    15   /* Database lock protocol error */
#define SQLITE_EMPTY       16   /* Database is empty */
#define SQLITE_SCHEMA      17   /* The database schema changed */
#define SQLITE_TOOBIG      18   /* String or BLOB exceeds size limit */
#define SQLITE_CONSTRAINT  19   /* Abort due to constraint violation */
#define SQLITE_MISMATCH    20   /* Data type mismatch */
#define SQLITE_MISUSE      21   /* Library used incorrectly */
#define SQLITE_NOLFS       22   /* Uses OS features not supported on host */
#define SQLITE_AUTH        23   /* Authorization denied */
#define SQLITE_FORMAT      24   /* Auxiliary database format error */
#define SQLITE_RANGE       25   /* 2nd parameter to sqlite3_bind out of range */
#define SQLITE_NOTADB      26   /* File opened that is not a database file */
#define SQLITE_ROW         100  /* sqlite3_step() has another row ready */
#define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
/* end-of-error-codes */

API中没有任何内容表明它们使用与Errno.h中定义的相同的错误代码。这简直是​​巧合。

sqlite3 API已经提供了一个界面来打印错误代码的字符串表示。我建议你多学习一下API。

编辑:根据您的评论,我查看了source for sqlite3,并使用了设置errno的操作系统功能。这可能就是您看到errno更改的原因。 There is no relation between SQLITE result code and errno.