# File lib/dbd_oracle/Oracle.rb, line 40
  def to_i
    if self.to_s =~ /^ORA-(\d+):/
      return $1.to_i
    end
    0
  end