Pergunta

I am using VisualStudio2008, I created a Smart Device Project; and i would like to create an application to update something to an access database. For example something similar to a Windows application:

string connection = Provider=Microsoft.JET.OLEDB.4.0;Data Source={0};Jet OLEDB:Database Password={1};
string password = "123456";
string path = @"C:\mydb.mdb";
OleDbConnection conn = new OleDbConnection(string.Format(connection, path, password));

There is the possibility of using the access database (.mdb) with Windows Mobile 6?

Thanks

Foi útil?

Solução

As far as I know there is no support for Access databases in Windows Mobile. You would have to either use SQL Server Compact Edition or connect to an external database over the internet.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top