Hello,<br><br>I started to test SqueakDBX yesterday (Squeak 3.10.2, OpenDBX 1.4.1, Windows XP, Oracle DB) and finally I was able to get my first result set:<br><br>connectionSettings := DBXConnectionSettings<br>        host: &#39;<a href="http://oracledb2.srs.cz">oracledb2.srs.cz</a>&#39;<br>
        port: &#39;1521&#39;<br>        database: &#39;ISMON&#39;<br>        userName: &#39;xxx&#39;<br>        userPassword: &#39;xxx&#39;.<br><br>conn := DBXConnection<br>        platform: DBXOraclePlatform new<br>        settings: connectionSettings.    <br>
<br>conn connect.<br>conn open.<br>result := conn execute: &#39;select name from users order by name&#39;.<br>DBXTranscript show: result.<br>conn close.<br>conn disconnect.<br><br>But I have two problems:<br>- all czech characters are converted to ASCII (diacritical marks are removed)<br>
- order of names is bad<br><br>Does SqueakDBX support national character sets and sorting ?<br><br>Michal<br><br>