SQLObject
Class container - a list of SQLValue scalars
# File lib/sqlobject.rb, line 173 def initialize ( *list ) @list = list.map { |item| SQLObject.get item } end
# File lib/sqlobject.rb, line 177 def << ( list ) list.map! { |item| SQLObject.get item } @list += list end
# File lib/sqlobject.rb, line 182 def to_s return @string if @string @string = "(" + @list.join( "," ) + ")" end
[Validate]
Generated with the Darkfish Rdoc Generator 2.