Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OraOLEDB error '80040e4b'

Status
Not open for further replies.

chikwendu

Programmer
Nov 4, 2018
5
0
0
US
Greetings mates,

My partner that handles classic ASP (yes, we still use it), is on vacation for a month and I am backing him up.
I have not used classic ASP in more than 10 years.
Yesterday, one of our users tried to search for her parcel on our website and ran into the following error:

The system cannot find message text for message number 0x80040e4b in the message file for OraOLEDB
D:\config/FunctionSubTyler1.inc, line 62


To replicate the error, please click the link below:

Then enter the following parcel ID:

1514504010

Please scroll down to the middle of the screen and you will see the error.

Here is the function where the error is coming from:

Code:
Function check_null_var(var)
     If IsNull(var) Then
         check_null_var = ""
     Else
         check_null_var = var
     End If
 End Function
and the offending line (line 62) is on this bolded line:
Code:
    Else
        [b]check_null_var = var[/b]

Any ideas why this is causing the problem?
Thanks in advance for your help

Many thanks in advance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top