How to update and use .mdb database access with Smart Device Application c# -


I am using VisualStudio2008, I have created a smart device project; And I want to make an application to make some updates for an Access database. For example, something like a Windows application:

  string connection = provider = Microsoft.JET.OLEDB.4.0; Data source = {0}; Jet ALLDB: Database Password = {1}; String password = "123456"; String path = "c: \ mydb.mdb"; OleDbConnection conn = new OleDbConnection (string.Format (connection, path, password));   

Is there a possibility to use Access database (.mdb) with Windows Mobile 6?

Thanks

As far as I know that the Access database in Windows Mobile There is no support for either you have to use or connect to external databases on the internet.

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -