On 4/18/16, Martin Trnovec <martin.trnovec at pipelinersales.com> wrote: > > Do you know if there is a way how to get n-th column of row during > sqlite3_update_hook callback ? I saw there are (in experimental version) > some functions like sqlite3_preupdate_new that are able to get this > information during sqlite3_preupdate_hook but this is not in stable > version.
That is only available in the preupdate hook, which is only available when compiling with the SQLITE_ENABLE_PREUPDATE_HOOK compile time option, and then only on the "sessions" branch, which as you have observed, was recently merged into trunk. The next schedule release is 3.13.0 which is due out in May sometime. See https://www.sqlite.org/draft/releaselog/3_13_0.html > > A by the way do anybody have any info when sqlite3_preupdate_hook will > be available in the stable version cause this feature seems to be in the > code since 2011 ;) ? > -- D. Richard Hipp drh at sqlite.org