I think, without to be 100% sure, that it is for the wrapper .NET
System.Data.SQLite.
I was myself in front of this code (to have this wrapper using the latest
sqlite version).
I ended up by removing all this code, meaning that if you don't call
dispose() in your code, it will not be garbage collected.
It is a risk I took, and it works so far.

Best regards,
Sylvain

On Sat, Apr 17, 2010 at 8:07 PM, D. Richard Hipp <d...@hwaci.com> wrote:

>
> On Apr 17, 2010, at 1:02 PM, Paul Shaffer wrote:
>
> > Due to changes in VdbeCursor structure, this code for 3.6.16 won't
> > compile
> > anymore:
> >
> > else if(pC->pseudoTable)
> > {
> >  *prowid = pC->iKey;
> > }
> >
>
> Your application should not be messing with internal data structures
> of SQLite, all of which are subject to change without notice (as you
> have discovered.)
>
> Perhaps if you explain to us what you are trying to accomplish we will
> be better able to help you.
>
>
> > and for 3.6.23 would have to be replaced by something like this:
> >
> > else if(pC->pseudoTableReg>0)
> > {
> >  //*prowid = ????
> > }
> >
> > My problem is that after about an hour of reverse engineering I can't
> > figure out a way to get the row id with the new code. Any help
> > appreciated.
> >
> >
> > _______________________________________________
> > sqlite-users mailing list
> > sqlite-users@sqlite.org
> > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>
> D. Richard Hipp
> d...@hwaci.com
>
>
>
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to