PlatformNotSupport Error in Wince5.0

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
bspark
Posts: 1
Joined: Tue 18 Mar 2014 00:02

PlatformNotSupport Error in Wince5.0

Post by bspark » Tue 18 Mar 2014 01:30

Hi everyone,

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.

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Re: PlatformNotSupport Error in Wince5.0

Post by Shalex » Tue 18 Mar 2014 11:08

bspark wrote://oraCSB.Direct = true; <-------- is this support in mobile edition?
Mobile Edition of dotConnect for Oracle works only in Direct mode. Do not use Direct parameter of connection string with Mobile Edition.
bspark wrote:When calling "open()" method, error message "PlatformNotSupport" appear.
Please try setting the Unicode property of your OracleConnection object to true. This will resolve the problem, if the server charset support is not available on your device. Notify us about the result.

Post Reply