Mysql数据与android数据对比
我怎样才能让android获取mysql表的值并将其与自身进行比较?
到目前为止,我有一个名为 versioncode 的表,其值为 1.0.2 我如何让我的 .php 文件提取此信息,然后将其传输到 android 中,以便 android 可以将版本代码 1.0.2 与它现在拥有的版本名称进行比较?
How can i get android to take a mysql table's values and compare it to itself?
So far i have a table called versioncode with the value of 1.0.2
How do i get my .php file to pull up this information and then transfer it into android so android can compare the versioncode 1.0.2 to the version name i t has right now?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Java 的 DB 适配器直接从数据库获取该信息,或者调用 .PHP 脚本来执行此操作。
然后将其与变量文件中的版本变量进行比较。如果不相等,则会显示一条消息,敦促用户升级。
You can get that information straight from the database with Java's DB adapter, or call on the .PHP script to do that.
Then you compare it to the version variable in the variables file. If it is not equal, you show a message that urges the user to upgrade.