小巧。快速。可靠。
三选其二。

会话模块 C 接口

在会话对象上设置表格过滤器。

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) 是“过滤器回调”。对于未附加到会话对象的表格中行的更改,将调用过滤器以确定是否应跟踪对表格行的更改。如果 xFilter 返回 0,则不跟踪更改。请注意,一旦表格附加,将不再调用 xFilter。

另请参阅对象常量函数列表。