On Wednesday, November 20, 2013 4:35:46 AM UTC-8, Marcel van Pinxteren wrote: > > I am trying to get my MS SQL working without sequel downcasing column > names. > I tried several places and syntaxes, but the only succes has been to add > def identifier_output_method_default > nil > end > to mssql.rb in the sequel gem. > > What is the correct way to get output method nil? >
For a specific database: DB.identifier_output_method = nil # or use the :identifier_output_method => nil option when connecting For all databases: Sequel::Database.identifier_output_method = nil Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/groups/opt_out.
