# File lib/dbi/dbi.rb, line 283
  def to_time
    if @original_time
      @original_time
    else
      t = ::Time.now
      ::Time.local(t.year, t.month, t.day, @hour, @minute, @second)
    end
  end