On Wed, Feb 18, 2009 at 7:15 PM, Alex Fortuna < [email protected]> wrote:
> > Hi everyone. > > I need to execute a "SET SQL_MODE='STRICT_ALL_TABLES'" after my > application's DB connection is established by AcriveRecord. This is > important since I want the DB itself be more strict about logical data > integrity. > > Which is the proper place within application code from where I can issue > this query? > > > Tried to make an ActiveRecord::Base.connection.execute() in an > initializer, but it only runs once after server startup. At next request > the connection is re-created, but initializers aren't invoked. > > Hi Alex, STRICT_ALL_TABLES is an option that one would set on a database. Thus, why don't you set it when you create the database? -Conrad --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. 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/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

