I’ve made a few WebDataSource implementations backed by PostgreSQL with no issues.
However, one of my last implementations was processing the wrong RowSet during the RowData request.
After disabling MultiThreaded for the connection and the problem went away.
The RowData was using a While Not rs.AfterLastRow … Wend loop to process the results (following the style in the WebListbox Datasource Example project).
Wanted to see if anyone else has noticed anything similar?