SQLite的SQL查询日志记录?

前端之家收集整理的这篇文章主要介绍了SQLite的SQL查询日志记录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要从使用sqlite的许多应用程序中记录查询。在这种情况下,将日志记录引入应用程序在实践中不是一个可行的解决方案。那么如何在sqlite本身启用查询日志记录?
看看sqlite Trace API。你必须自己实现回调。
void *sqlite3_trace(sqlite3*,void(*xTrace)(void*,const char*),void*);

The callback function registered by sqlite3_trace() is invoked at varIoUs times when an sql statement is being run by sqlite3_step(). The callback returns a UTF-8 rendering of the sql statement text as the statement first begins executing. Additional callbacks occur as each triggered subprogram is entered.

原文链接:https://www.f2er.com/sqlite/198031.html

猜你在找的Sqlite相关文章