On Thursday, June 21, 2012 9:01:24 AM UTC-7, Mario Ruiz wrote: > > I have sequel and ruby-mysql installed and i get this error: > option not implemented: 5 > unsupported flag: CLIENT_COMPRESS > C:/Ruby187/lib/ruby/gems/1.8/gems/ruby-mysql-2.9.9/lib/mysql/protocol.rb:209:in > > `authenticate': Mysql::ProtocolError: The old style password is not > supported (Sequel::DatabaseConnectionError) > > I think the client_compress can be solved by setting :compress to false > but what about the rest? >
You are using the pure ruby mysql driver, which isn't supported. You need to install the C driver (do gem install mysql, not gem install ruby-mysql). Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/sequel-talk/-/q1aHHWQs8uAJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
