问题描述
所以这就是我需要我的实习结束前做的。
So this is what I need to do before my traineeship ends.
- 连接从一个网站,数据库Android应用程序
- 在一些信息存储到数据库中
- 在检索一些信息从数据库返回的
我已经用标准的SQLite内置的Android应用程序体验。问题是,我需要让人们从服务器获取一些信息,以便它们可以共享与其他信息。我已经离开3周我之前我的实习做的,所以任何帮助将大大appriciated。
I have already experience with the standard sqlite build in android apps.The problem is, I need to let people get some information from the server sothey can share information with the others. I have 3 weeks left before I'mdone with my traineeship, so any help would be much appriciated.
推荐答案
1)创建一个SQLite数据库(Windows图形用户界面的SQLite PROG:的)
1) Create an SQLite database (Windows GUI SQLite prog: http://sqliteadmin.orbmu2k.de/)
2)把它的服务器上
3)作出一个PHP脚本,将更新/读取数据库(在服务器上)
3) make a php script that will update / read your database (on the server)
<?php
$row_id = $_GET['yourRowId'];
$submitted_var = $_GET['yourUpdateVar'];
if($database = new PDO("sqlite:your_sqlite_database.s3db")){
//insert data into database
$query = "UPDATE your_table SET some_field=$submitted_var WHERE _id=$row_id";
$database->query($query);
echo DONE;
} else {
die($err);
}
?>
4)从你的Android应用程序调用该PHP脚本
4) Call this php script from your android app
http://yourserver/yourfolder/yourscript?yourRowId=1&yourUpdateVar=3
http://yourserver/yourfolder/yourReadScript (parse html response)
完成
这就是我会做3周: - )
That's how I'd do it in 3 weeks :-)
OOI人的UR实习@?
OOI were's ur traineeship @?
这篇关于Android的同步与网站的数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!