Results 1 to 2 of 2

Thread: Passing a text parameter

  1. #1
    Roy Higgs Guest

    Passing a text parameter

    Is it possible to pass a text parameter to an SP. I was never successful in 6.5 and haven't yet been successful in 7.0. I'm hoping maybe I'm just doing something wrong.

  2. #2
    Breck Morrison Guest

    Passing a text parameter (reply)

    The stored procedure statement would look like:

    CREATE PROCEDURE Proc_Name (@ARG1 VARCHAR(10)) AS ...

    The Call would look like:

    EXEC Proc_Name "File Name"


    On 12/7/98 2:29:15 PM, Roy Higgs wrote:
    > Is it possible to pass a text parameter to an SP. I was never successful in
    > 6.5 and haven't yet been successful in 7.0. I'm hoping maybe
    > I'm just doing something wrong.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •