Oracle Connectivity

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can I directly access remote oracle database(version 8.1.*) from .NET CF based Application
Of course, Wireless lan environment is already built
Previously, I make .NET CF based application that directly access remote SQLServer200 database using SqlDataProvider
Unfortunately, OracleDataProvider is not supported in .NET CF
How do I solve my problem
Thanks in advance.
 
Since as far as I know there is no Oracle data provider for .NetCF yet, you
would need to write a desktop app that uses sockets or web services to
connect your .NetCF app and your Oracle database.
--
Ginny Caughey
..Net Compact Framework MVP

MS.Joo said:
Can I directly access remote oracle database(version 8.1.*) from .NET CF based Application?
Of course, Wireless lan environment is already built.
Previously, I make .NET CF based application that directly access remote
SQLServer200 database using SqlDataProvider.
 
But i found no documentation on this dll

skicow said:
Hi,

I'm using .NET with an Oracle database. You would need to buy Oracle Lite
9i, to use an Oracle database on a .NETCF device, this keeps an Oracle
database on the device which you can update/delete/insert to. The data is
then synchronized with the Oracle server side database when you connect to
an Oracle service that's running. The library Oracle.Lite.Data.dll is
supplied with Oracle Lite and supported by the .NETCF.
 
Back
Top