sqlite3_get_table传参
时间: 2023-03-30 10:05:03 浏览: 116
sqlite3_get_table传参是用于执行 SQL 查询语句并将结果存储在一个二维数组中的函数,它的参数包括 sqlite3 对象、SQL 查询语句、结果存储指针、行数指针、列数指针和错误信息指针。
相关问题
** The sqlite3_get_table() interface is implemented as a wrapper around ** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access ** to any internal data structures of SQLite. It uses only the public ** interface defined here. As a consequence, errors that occur in the ** wrapper layer outside of the internal [sqlite3_exec()] call are not ** reflected in subsequent calls to [sqlite3_errcode()] or ** [sqlite3_errmsg()].翻译
sqlite3_get_table() 接口是围绕 sqlite3_exec() 实现的包装器。sqlite3_get_table() 例程没有访问 SQLite 的任何内部数据结构的权限。它仅使用此处定义的公共接口。因此,在 sqlite3_exec() 调用之外的包装器层中发生的错误不会反映在后续对 sqlite3_errcode() 或 sqlite3_errmsg() 的调用中。
阅读全文