Small. Fast. Reliable.
Choose any three.
*** 306,311 ****
--- 306,339 ----
  first argument to the function.  But for "like(A,B)" the A term
  is considered the first argument.
  
+ ----
+ *xBegin*
+ 
+   int (*xBegin)(sqlite3_vtab *pVTab);
+ 
+ Undocumented
+ 
+ ----
+ *xSync*
+ 
+   int (*xSync)(sqlite3_vtab *pVTab);
+ 
+ Undocumented
+ 
+ ----
+ *xCommit*
+ 
+   int (*xCommit)(sqlite3_vtab *pVTab);
+ 
+ Undocumented
+ 
+ ----
+ *xRollback*
+ 
+   int (*xRollback)(sqlite3_vtab *pVTab);
+ 
+ Undocumented
+ 
  -----
  ***Reader Comments***