CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    7

    Accessing Oracle Stored procedure

    Hi,
    I have problem in accessing stored procedure with IN parameters.Please let me know hot to pass parameters to procedure which is created in Oracle from VB using command object.

    Thanks in advance.



  2. #2
    Join Date
    Mar 2001
    Posts
    91

    Re: Accessing Oracle Stored procedure

    Using createparameter method create explicitly the parameters with command object that corresponds to the parameters with stored procedure and set the value property for the parameters which are supposed to be IN.

    Or Else use refresh method to get the parameters autodefined from the procedure and then set the value property

    - Srikanth


Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured