On Jan 19, 8:53 pm, Thomas Mueller <[email protected]> wrote: > > The best of course would be to allow case sensitivity as well but I > > gather that that is harder to implement.
There is a reason why standards exists and just because they are ignored by Microsoft or (even more so) by the MySQL development team doesn't mean this is a good thing. > Is there a database that supports this mode? Unfortunately yes. MySQL with MyISAM and a case-sensitive file system, or InnoDB with one file per table and a case-sensitive file system. and lower_case_table_names = 0. If that parameter is set to 1 or 2 things become different again (even with case-sensitive file systems). It's a big mess with MySQL SQL Server with a case sensitive collation for the master database All things are highly non-standard and create more problems than they solve (if at all), especially because one cannot rely on the same behaviour across installations.
-- You received this message because you are subscribed to the Google Groups "H2 Database" 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/h2-database?hl=en.
