El Martes, 19 de Enero de 2010, Iñaki Baz Castillo escribió: > Other solution is setting COLLATE "latin1_general_cs" (or any ending in > "_cs") for the column. > > Is it possible Sequel to generate a DB column with specified collation?
Even easier: create the database with default COLLATE "latin1_general_cs": CREATE DATABASE `mydb` DEFAULT CHARACTER SET latin1 COLLATE latin1_general_cs; Then by default string fields will use this collation. -- Iñaki Baz Castillo <[email protected]>
-- You received this message because you are subscribed to the Google Groups "sequel-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/sequel-talk?hl=en.
