Re: Question on stability of results returned by C api mysql_fetch_row()

The Natural Philosopher <[email protected]> Thu, 11 Feb 2021 18:34:36 +0000
Newsgroups comp.databases.mysql
Organization A little, after lunch
Message-ID <[email protected]>
>      row1 = mysql_fetch_row(results);
>    
>      /*
>      ** Do either of these calls to mysql_fetch_row() somehow
>      ** alter the results accessable from the row returned by
>      ** the prior call(s) to mysql_fetch_row()?
>      */
>      row2 = mysql_fetch_row(results);
>      row3 = mysql_fetch_row(results);
>    
No, but beware of reusing 'results' again to make another database 
access *in between*.

I've done that :-(


-- 
WOKE is an acronym... Without Originality, Knowledge or Education.