On Tuesday 27 January 2009 07:21, Martin Evans wrote:

> Does anyone know of a way to get numbers (as I've described) back from
> DBD::Oracle.

If you know the data is integer try:
 
  while($s->fetch) {
    push @data, int($num);
   
    etc()
  }

-- 
Stephen Carville <[email protected]>
Systems Engineer
Land America
1.626.667.1450 X1326
============================================================
Any security software design that doesn't assume the enemy
possesses the source code is already untrustworthy.
                                           -- Eric Raymond

Reply via email to