This commit is contained in:
2020-01-20 20:59:35 +00:00
parent aeee5a92b1
commit c98e7c387c
2 changed files with 5 additions and 2 deletions

View File

@@ -486,7 +486,7 @@ namespace AyaNova.Biz
while (dr.Read())
{
List<AyaFieldData> row = new List<AyaFieldData>(returnRowCount);
//GetOrdinal is flakey in npgsql so need an alternative, probably faster this way anyway
//GetOrdinal is flakey in npgsql so just going by field definition and ordinal numerically
int nCurrentColumnPointer=0;
//flag to handle first column which has no display value, just an id instead
bool isFirstDFColumn=true;