# File lib/tapkit/access/sql.rb, line 81
                def append_item( string, list = nil )
                        list ||= @list_string
                        unless list.empty? then
                                list << ", #{string}"
                        else
                                list << string
                        end
                end