From: KUBO Takehiro Date: 2010-04-17T06:30:34+09:00 Subject: Re: DB to CSV On Fri, Apr 16, 2010 at 9:02 PM, Mitja Čebokli wrote: > And one more thing :) > > I have a problem, as it seems, with columns where data are numbers. > For example, row with ID number is returning me something like 0.2001E4 How did you define the ID number. If it is defined as NUMBER, the column is not an integer and it may not fit to Float. Thus ruby-oci8 fetch it as BigDecimal by default. See: http://rubyforge.org/forum/forum.php?thread_id=47561&forum_id=1078 Could you redefine the ID as NUMBER(38) or so?