> On 13 Jul 2020, at 08:10, Justin Pryzby <pry...@telsasoft.com> wrote:
> Every other access to "res" in this loop is to res(i), which I believe is what > was intended here, too. Currently, it will dumbly loop but skip *every* row > if > the 2nd column (1: size) of the first row (0) is null. Yeah, I agree with that, seems like the call should've been PQgetisnull(res, i, 1); to match the loop. cheers ./daniel