# File lib/tapkit/access/adapters/csv.rb, line 307
                def sql_for_string( string )
                        if string.nil? then
                                nil
                        else
                                if @encoding then
                                        string = Utilities.encode(string, @encoding)
                                end
                                string.to_s
                        end
                end