Skip to main content
September 22, 2010
Answered

How to call a session variable into sql?

  • September 22, 2010
  • 1 reply
  • 580 views

for example, I have a coldfusion session variable - session.testvar

I am writing a Stored procedure in sql server 2000. The query within my stored procedure needs to insert a value into a table. The value needs to be my CF session variable. I have no idea how this is done, does anyone else have a hunch?

I am using coldfusion 8 and sql server 2000.

This topic has been closed for replies.
Correct answer Reed_Powell-ttnmOb

Pass it to the SP as a variable

- there are examples in the cf docs

1 reply

Reed_Powell-ttnmObCorrect answer
Inspiring
September 22, 2010

Pass it to the SP as a variable

- there are examples in the cf docs

September 22, 2010

Thanks, found what Ineeded there!