I have a problem with the latest version of dot connect for oracle mobile.
My environment is like this.
1. Visual Studio 2008
2. devart dotConnect for Oracle 8.3 Mobile Trial
(I'll buy product after some test successful)
3. Window CE 5.0 device
And here is my code.
using Devart.Data.Oracle;
OracleConnectionStringBuilder oraCSB = new OracleConnectionStringBuilder();
//oraCSB.Direct = true; <-------- is this support in mobile edition?


oraCSB.Server = "192.168.0.10";
oraCSB.Port = 1521;
oraCSB.Sid = "XE";
oraCSB.UserId = "dev";
oraCSB.Password = "dev";
OracleConnection myConnection = new OracleConnection(oraCSB.ConnectionString);
myConnection.Open();
When calling "open()" method, error message "PlatformNotSupport" appear.
It just same in sample code except "direct mode".
1. Not Support direct mode in Mobile edition ?
2. Something change to use mobile edition?
3. And really Not Support wince ?
please advice to me.