in reply to Re: Re: Re: Re: Float values from MS SQL Server.
in thread Float values from MS SQL Server.

Hi,

Your problem is a scoping issues. You declare the variables as my variables in the while loop. After this loop, the variables will be gone. The solution is to declare these variables above the while loop.

ALWAYS put use strict; use warnings; at the top of your Perl programs.

Regards,

Marcel