Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

cfstoredproc

Guest
May 17, 2010 May 17, 2010

If you use cfstoredproc to call a stored procedure that has 2 que

ries in it, how do you display the results of both queries?

421
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Valorous Hero , May 17, 2010 May 17, 2010

I would guess you would have to return each query as seperate "out," or maybe "in-out," parameters.

Then you would work with the name of each parameter.

Translate
Valorous Hero ,
May 17, 2010 May 17, 2010

I would guess you would have to return each query as seperate "out," or maybe "in-out," parameters.

Then you would work with the name of each parameter.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
May 17, 2010 May 17, 2010
LATEST

It depends... You could use separate cfprocresult tags and assign a different name to each one. Then output the queries as usual.

cfprocresult name="query1"

cfprocresult name="query2"

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources