On 05/25/00, "[EMAIL PROTECTED]" wrote:
>  my page is a search engine with conection a MS access database.
>when i have to show the results from some page its been showed  all the 
>results i expected and in the middle of them i have the information below

>Use of uninitialized value at e:\clikimoveis\web\scripts\acdc.cgi line 
>990.
>Use of uninitialized value at e:\clikimoveis\web\scripts\acdc.cgi line 
>990.
>Use of uninitialized value at e:\clikimoveis\web\scripts\acdc.cgi line 
>990.
>Use of uninitialized value at c:/Perl/site/lib/Win32/ODBC.pm line 258.

>why its happening?i don't even use the ODBC.pm module.can it be a script
>problem or a web server problem?

It sounds like you ARE using the Win32::ODBC module. Perhaps you are
selecting null values from the database which turn into undefined values
when they get to a perl variable.

If thats the case, then the simplest solution is to do something
like this after selecting a row of data:
for (@my_data) {
 $_ = '' unless defined;
}

HTH,
Douglas Wilson

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to