> On Oct 12, 2016, at 9:49 AM, Igor Korot <[email protected]> wrote: > > Forward cursors are supported by means of prepare()/step(), but what about > backward cursors?
No, SQLite cursors only go in one direction, i.e. there is no step_back function. You could simulate this feature by copying rows into a stack as you step through them, but this can obviously get memory-intensive (depending on how far back you need to step.) —Jens _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

