You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Intuit.QuickBase.Client/QTable.cs
+63-7Lines changed: 63 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -169,19 +169,75 @@ public int GetServerRecordCount()
169
169
170
170
privatevoid_doQuery(DoQueryqry)
171
171
{
172
-
XPathNavigatorxml;
173
172
Records.Clear();
174
173
try
175
174
{
176
-
xml=qry.Post().CreateNavigator();
175
+
XPathNavigatorxml=qry.Post().CreateNavigator();
176
+
LoadColumns(xml);//Must be done each time, incase the schema changes due to another user, or from a previous query that has a differing subset of columns
177
+
LoadRecords(xml);
177
178
}
178
-
catch(ViewTooLargeExceptionex)
179
+
catch(ViewTooLargeException)
179
180
{
180
-
//split into smaller queries automagically eventually
LoadColumns(xml);//Must be done each time, incase the schema changes due to another user, or from a previous query that has a differing subset of columns
0 commit comments