views:

28

answers:

2

Hi,

Does anybody know an embedded XML database which can run on Windows Ce 6.0 and which has .NET bindings

A: 

Do you mean something like: "SQL Server CE 2.0 and the .NET Compact Framework"

If this is what you seek,I am sure a quick search in the spirit of the above mentioned will result similar things with later versions (like SqlCE 3.5).

Shaihi
A: 

The default database for Windows CE is CEDB. Windows CE also includes support for the embedded database (EDB), which enhances the functionality of CEDB . These are ancient databases which are mostly used in SDK, MFC windows CE application.

Information: http://msdn.microsoft.com/en-us/library/ms885343.aspx

If you want to build an application in .Net you can simply use SQL Server CE database version supported to .Net framework (as suggested by "Shaihi"), which is wrapper over EDB(Embedded database).

I think for cross platform application, SQLITE is best option.

Also please check satckoverflow's link similar to your post: http://stackoverflow.com/questions/705/embedded-database-for-net-that-can-run-off-a-network

user001
No, that's not what I need. I need an XML native database, i.e. database which can store XML documents and do manipulations on the using XPath/XQuery.
Bogi