문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top