-
Notifications
You must be signed in to change notification settings - Fork 695
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
Execute stored procedures with resultSet, MS SQL #1249
Comments
found this, it works. Thanks to vasily-kirichenko |
Tapac
added a commit
that referenced
this issue
Jun 4, 2021
Duplicate of #390 |
@TemichCh , please check #390 (comment) |
SchweinchenFuntik
pushed a commit
to SchweinchenFuntik/Exposed
that referenced
this issue
Oct 23, 2021
How to call a MSSQL stored procedure and iterate over returned result set? JetBrains#390 Execute stored procedures with resultSet, MS SQL JetBrains#1249
SchweinchenFuntik
pushed a commit
to SchweinchenFuntik/Exposed
that referenced
this issue
Oct 23, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have SQL stored procedure that returns a resultset.
Trying to execute it with exec() statement, but dont have any results
If i add selec 1 as mat_nam in the first row in exec() statement, i go to the { while (it.next()) ....} block.
In Transaction.kt on the row № 93 there is code
My query goes to else.
So to resolve it, i save procedure results to #table, and use second exec() where do select from that #table.
Maybe there is another way? thanks
The text was updated successfully, but these errors were encountered: