-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fields of type "address" are not supported #8
Comments
I had the same issue when trying to implement in our Business. Any fixes? |
This repo hasn't been updated in 5 years. I have attempted to correct several problems and make programming easier in my fork and would appreciate feedback in what I've been doing. |
That's great, I will watch your fork and try to work with it. My company is
trying to bring their month end numbers down into SQL and I was going to
setup something with the SDK to automatically take care of it at the end of
the month. Although I am having issues with the size of one of the tables
throwing a ViewTooLargeException. And I cannot seem to figure out how the
SDK is pulling the records down in the query, for instance the field IDs on
Quickbase never match the Table array returned.
…On Tue, Mar 27, 2018 at 2:58 PM, Jareth Hein ***@***.***> wrote:
This repo hasn't been updated in 5 years. I have attempted to correct
several problems and make programming easier in my fork
<https://github.com/jherig/QuickBase-C-Sharp-SDK> and would appreciate
feedback in what I've been doing.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#8 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AKIN5lslbUo3pc1QLCvaMNMhtmF2oMNOks5tiovPgaJpZM4MUJdg>
.
|
I do have a fix for the ViewTooLarge in my fork, although it does have to result to a 'fallback and split query' which adds quite a few extra API calls and time... unfortunately the API doesn't allow any way to guess when a ViewTooLarge will occur. Let me know if I can help. |
Yeah the main problem I am having with it is when it queries it does not
return values in any structured way and there is way to get the structure
of the table return. Thankfully all we are trying to do is move the data
from Quickbase to an SQL server so if I could just get the structure moving
it would be easy. I do not know how the split would affect it though.
…On Tue, Mar 27, 2018 at 3:07 PM, Jareth Hein ***@***.***> wrote:
I do have a fix for the ViewTooLarge in my fork, although it does have to
result to a 'fallback and split query' which adds quite a few extra API
calls and time... unfortunately the API doesn't allow any way to guess when
a ViewTooLarge will occur. Let me know if I can help.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#8 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AKIN5jPefxGV7XcjuSEsTjtzkD9L8z4yks5tio35gaJpZM4MUJdg>
.
|
Perhaps I wasn't quite clear... my code does stitch the subqueries back together. It just takes a lot longer that in should, and uses quite a few extra API calls which can matter depending on your QB subscription. |
Got it, that shouldn't be a problem for us since I believe we have 250000 a
month and I'm the only real developer here so we shouldn't have a problem
with that.
…On Tue, Mar 27, 2018, 3:12 PM Jareth Hein ***@***.***> wrote:
Perhaps I wasn't quite clear... my code does stitch the subqueries back
together. It just takes a lot longer that in should, and uses quite a few
extra API calls which can matter depending on your QB subscription.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#8 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AKIN5gGh_zfdb0jNjVW_JpZUTeZlF3pgks5tio8pgaJpZM4MUJdg>
.
|
getting this multitext error using your fork var type = the error |
Ah, thanks for reminding me about handling that field type. I don't recall the reason I put it off, but I think it had something to do with problems writing a test case for it. I'll see what I can do this week to at least support fields created via the webGUI. |
I added this to fieldtype.cs to solve
|
Steps to reproduce:
Expected behavior:
The variable
app
should contain a valid instance ofIQApplication
.Actual behavior:
ArgumentException
is thrown fromIntuit.QuickBase.Client.QTable.LoadColumns()
(line 305)Root cause:
The exception is thrown when line 305 hits a field where
columnNode.GetAttribute("field_type", String.Empty)
is "address". The enumFieldType
has no corresponding value so the exception is thrown.The text was updated successfully, but these errors were encountered: