Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/oci8/oci8.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#to_onum(format = nil, nls_params = nil) ⇒ OraNumber
Converts
self
to OraNumber.
Instance Method Details
#to_onum(format = nil, nls_params = nil) ⇒ OraNumber
Converts self
to OraNumber. Optional fmt and nlsparam is used as Oracle SQL function TO_NUMBER does.
801 802 803 |
# File 'lib/oci8/oci8.rb', line 801 def to_onum(format = nil, nls_params = nil) OraNumber.new(self, format, nls_params) end |