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 - Performance of System() -

python - how we can use ajax() in views.py in django? -

c++ - How to define methods in a base class that only work in derived classes? -