how to print result of create table? #1145
-
I have dynamic table creation and I would like to see the table creation result. when I print rowcount it is always "-1". this is my code:
Can anyone help ? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
gordthompson
Jan 2, 2023
Replies: 1 comment
-
What sort of "result" would you expect to see? DDL statements don't return a result per se; they return nothing if they succeed and return an error if they fail. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gordthompson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What sort of "result" would you expect to see? DDL statements don't return a result per se; they return nothing if they succeed and return an error if they fail.