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 format and nls_params is used as Oracle SQL function TO_NUMBER does.
748 749 750 |
# File 'lib/oci8/oci8.rb', line 748 def to_onum(format = nil, nls_params = nil) OraNumber.new(self, format, nls_params) end |