Reading from a SQL Stored Procedure #6224
-
I am able to read from a SQL table using a Database Reader, but I would like to read from the results of a SQL Stored Procedure and put the data into HL7 messages. When I try to do this, there doesn't seem to be anything in the data fields. Is this possible and if it is, is there any guidance on how to do it? Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
radamswindber
Jun 7, 2024
Replies: 1 comment 5 replies
-
Depends on your SQL server engine type which you omitted in your post. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, deleted my last entry because I didn't realize the screenshot had gotten the credentials.
I figured it out. The field name is case sensitive and although my field in the table is ApptGroup, the field I see in the Raw data of the Channel messages is apptgroup. When I change it, it works! Thanks for your time!