Class DBI::Row
In: lib/DB.rb
Parent: Object

augments DBI::Row with a method_missing method that lets the row behave as if it had accessor methods for each colum.

Methods

Public Instance methods

[Source]

# File lib/DB.rb, line 215
                def method_missing meth_id
                        return self[meth_id]
                end

[Validate]