Class Informix::Database::IfxVersion
In: lib/informix.rb
Parent: Object

The IfxVersion struct provides the exact version of the database server to which a Database object is connected.

Examples:

  db.version.server_type #=> "IBM Informix Dynamic Server"
  db.version.level       #=> "C6"
  db.version.to_s        #=> "IBM Informix Dynamic Server Version 9.40.FC6"

Methods

to_s  

Public Instance methods

Returns the complete version string

[Source]

    # File lib/informix.rb, line 88
88:       def to_s
89:         full.rstrip
90:       end

[Validate]