Class: DB2::Parameter
- Inherits:
-
Object
- Object
- DB2::Parameter
- Defined in:
- lib/active_record/vendor/db2.rb
Instance Attribute Summary collapse
-
#decimalDigits ⇒ Object
readonly
Returns the value of attribute decimalDigits.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type, size, decimalDigits) ⇒ Parameter
constructor
A new instance of Parameter.
Constructor Details
#initialize(type, size, decimalDigits) ⇒ Parameter
Returns a new instance of Parameter.
358 359 360 |
# File 'lib/active_record/vendor/db2.rb', line 358 def initialize(type, size, decimalDigits) @type, @size, @decimalDigits = type, size, decimalDigits end |
Instance Attribute Details
#decimalDigits ⇒ Object (readonly)
Returns the value of attribute decimalDigits.
357 358 359 |
# File 'lib/active_record/vendor/db2.rb', line 357 def decimalDigits @decimalDigits end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
357 358 359 |
# File 'lib/active_record/vendor/db2.rb', line 357 def size @size end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
357 358 359 |
# File 'lib/active_record/vendor/db2.rb', line 357 def type @type end |