android with msaccess

我只是一个虾纸丫 提交于 2019-12-11 04:07:34

问题


is there any way to use msaccess file on android application


回答1:


I do not believe there is any way to use a MS Access database with an Android application. Instead, you should probably consider using another database such as SQLite.

You could migrate your Access database to SQLite:

  1. Export your Access database into text files, semicolon or comma delimited.
  2. Open the SQLite database browser and chose File -> Import -> Table from csv file.
  3. Browse for your text file and choose the appropriate delimiter. Click create.



回答2:


If import isn't an option you can make a (PHP) webservice that queries the database. Then call upon that webservice in your android application.

This week i'll be starting a tutorial serie on http://p-xr.com that will explain just that.




回答3:


You can use jackcess, is pretty easy to use, but you can't execute queries.

http://jackcess.sourceforge.net/faq.html




回答4:


Well, if you are using Access 2010, then you can build web sites, and the results are massively scalable to the web in terms of simultaneous users. The so called Access web services are also coming to office 365. So with office 365 (still in testing) or with SharePoint 2010 you can thus publish Access forms to the web. Here is a video of mine, and note how the same Access application at the half way point is run in an standard browser.

http://www.youtube.com/watch?v=AU4mH0jPntI

Note that no ActiveX or Silverlight is required (so it standard web compliant). I have tested the Access applications running on my windows 7 phone and the Access web application also runs well on my iPad (safari browser).

So, I do not see why the Access application would not work and run fine on an android phone. Note that when you publish the Access forms they are turned into xaml (.net zammel forms), and code you write in the Access form is converted into JavaScript. Reports are converted into sql server reporting services.



来源:https://stackoverflow.com/questions/5521730/android-with-msaccess

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!