[sqlite] documentation for sqlite3_index_info-ídxStr typo.

2018-07-04 Thread Ben Manashirov
like idxStr can point to anything and sqlite will treat it as arbitrary data instead of a string. Happy Canada Day :) Ben Manashirov ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman

[sqlite] virtual table module not found needs better logging

2018-08-03 Thread Ben Manashirov
if( pMod==0 || pMod->pModule->xCreate==0 || pMod->pModule->xDestroy==0 ){ *pzErr = sqlite3MPrintf(db, "no such module: %s", zMod); rc = SQLITE_ERROR; }else{ rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr); } That code doesn't tell me I have not implemented xDestroy.. I fo