-
Notifications
You must be signed in to change notification settings - Fork 1
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
MSQL queries #36
Comments
Are you sure your query returns a non-empty result set? When submitted through the MemberSuite MSQL console, for instance. Didn't realize anybody else was using this. Will have to take care of those outstanding issues now, I reckon. |
Yes, in fact when I run this query |
The only MSQL queries supported are those that select OBJECT() or OBJECTS(). These results are turned into MemberSuiteObjects, with field data in the MemberSuiteObject.fields list. For example:
To make the OBJECT() or OBJECTS() requirement visible, a number of functions and parameters have been renamed. These might be breaking changes for your application.
|
Thanks, having success now. Can the 400 row limit be removed? |
Sorry for the delayed response. Thought I might get it fixed before getting back to you, but I haven't. The 400 item limit is at line 99. You might have success increasing that to an absurdly high number, though you might also experience timeouts on longer running queries. I think I might be able to remove the Another approach is to use the logic in |
So far I've tried two different approaches but neither are yielding the results I need.
Approach 1:
This approach gives me the schema, with metadata about the column I queried and a total row count, but no actual rows of data.
Approach 2:
This approach just yields an empty list.
The text was updated successfully, but these errors were encountered: