CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: Oracle error

  1. #1
    Join Date
    Mar 2001
    Posts
    16

    Oracle error

    When I get Oracle errors from my application, how do I get to know the description of the error and the source from the error number.


  2. #2
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Oracle error

    On error handler add line
    msgbox err.number & " - " & err.Description

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  3. #3
    Join Date
    Mar 2001
    Posts
    16

    Re: Oracle error

    how do I get the details of the error from the error number and the description.

    eg.
    the error description is 'Errors occured', from this how do I come to know the cause of the error.


  4. #4
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Oracle error

    The error description will give you the short description of your problem. It is not going to be just 'error occured'. By error number and description you will be able to understand the problem or to go to the knowledge base and find the details.

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  5. #5
    Join Date
    Mar 2001
    Posts
    16

    Re: Oracle error

    Thank u very much for the support.


  6. #6
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Oracle error

    Rate it if it helped you

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

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