When I do NSLog(@"Andreas Höschler") on MacOSX I get
2002-05-10 15:49:02.252 FBTest[12868] Andreas H\\366schler
When I do the same on GNUstep I get
May 10 15:45:50 FBTest[2073] Andreas H?schler
It' s not that I am wondering how to log my name but the same occurs when generating SQL. My program works perfectly on MacOSX (lastname = "Höschler" --> returning one row) but on GNUstep I get SQL like
SELECT t0."PERSONID",t0."FIRSTNAME",t0."LASTNAME" FROM "PERSON" as t0 WHERE t0."LASTNAME" = 'H?schler';
and of course no rows back. What is the problem here? Why is "ö" converted to "?" and by whom?