Set a table filter on a Session Object
在会话对象上设置表格过滤器
在会话对象上设置表格过滤器。
void sqlite3session_table_filter(
sqlite3_session *pSession, /* Session object */
int(*xFilter)(
void *pCtx, /* Copy of third arg to _filter_table() */
const char *zTab /* Table name */
),
void *pCtx /* First argument passed to xFilter */
第二个参数(xFilter)是“过滤器回调”。要更改未附加到Session对象的表中的行,将调用筛选器以确定是否应跟踪对表的行进行的更改。如果xFilter返回0,则不会跟踪更改。请注意,一旦附加了表格,xFilter将不会再被调用。