Due to changes in VdbeCursor structure, this code for 3.6.16 won't compile
anymore:

else if(pC->pseudoTable)
{
  *prowid = pC->iKey;
}

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

Reply via email to