On Jun 17, 6:23 pm, Alec Shaner <
asha...@chumpland.org> wrote:
> Not sure if you require a solution within pyodbc itself, but can't you just
> do something like this?
>
> [tuple(r) for r in r2] == [tuple(r) for r in r1]
>
> where r1 and r2 are the results of cursor.fetchall() calls.
>
Thanks, Alec. Yes I can do that, and if there is no alternative I
will.
I have existing code that works with sqlite3 and with psycopg2, and
they can both handle my requirement with a simple compare. It would be
nice not to have to 'special case' pyodbc, but if I have to I will.
Frank