Re: [sqlite] VTab & xRename

2012-10-24 Thread gwenn
Thanks for your suggestion Jay. static sqlite3_module csvModule = { 0,/* iVersion */ csvCreate,/* xCreate - create a table */ csvConnect, /* xConnect - connect to an existing table */ csvBestIndex, /* xBestIndex - Determine

Re: [sqlite] VTab & xRename

2012-10-23 Thread Jay A. Kreibich
On Tue, Oct 23, 2012 at 10:16:07PM +0200, gwenn scratched on the wall: > Hello, > > The documentation says the xRename function is mandatory: > http://sqlite.org/vtab.html#xrename > "The xRename method is required for every virtual table implementation." > > But it seems possible to not specify

[sqlite] VTab & xRename

2012-10-23 Thread gwenn
Hello, The documentation says the xRename function is mandatory: http://sqlite.org/vtab.html#xrename "The xRename method is required for every virtual table implementation." But it seems possible to not specify it: static const sqlite3_module fts3aux_module = { ... 0,