We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Support of embedded SQL needed - also with the "INTO ARRAY" clause
To Reproduce create cursor abc (mkey i, mident c(10)) insert into abc (mkey,mident) values (1,"a") insert into abc (mkey,mident) values (2,"b") insert into abc (mkey,mident) values (3,"c")
LOCAL ARRAY aData[1] Select * from abc into array aData
Expected behavior Select fills the vfp-(in that case 2 dimensional) array with mixed types. Elements in the declaration do not really matter.
The text was updated successfully, but these errors were encountered:
We will try to add support for simple SELECT statements in one of the next build. Select into an array should then also be fairly easy to implement.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Support of embedded SQL needed - also with the "INTO ARRAY" clause
To Reproduce
create cursor abc (mkey i, mident c(10))
insert into abc (mkey,mident) values (1,"a")
insert into abc (mkey,mident) values (2,"b")
insert into abc (mkey,mident) values (3,"c")
Expected behavior
Select fills the vfp-(in that case 2 dimensional) array with mixed types. Elements in the declaration do not really matter.
The text was updated successfully, but these errors were encountered: