0

我正在寻找一个应用程序,用户可以通过存储在数据库中的应用程序读取信息。使用 sql 查询,我想返回值并将其输出到应用程序上,以便用户在单击“查看注释”按钮时可以阅读它。

保存在 PHP 中的 SQL 查询

<?php
include 'connect.php';

$id = $_POST['UserID'];

$query_search = "select MedicalNotes from PatientRecords where PatientID = 1";

$result = mysql_query($query_search) or die(mysql_error());

$row = mysql_fetch_array($result);


?>

然后,当用户单击“查看注释”按钮时,我想通过应用程序运行此查询。

我是否使用,

    httppost = new HttpPost(
                "http://database.location.ac.uk/app/queries/notes.php");

?

4

1 回答 1

0

看看这个(链接)。

一个可能有用的小例子:

SQLiteDatabase myDB = SQLiteDatabase.openDatabase("myDatabase.db", null, SQLiteDatabase.OPEN_READONLY);

String select = "select MedicalNotes from PatientRecords where PatientID = 1";
Cursor dbCursor = myDB.rawQuery(select, null);

dbCursor.moveToFirst();
while (dbCursor.isAfterLast() == false) 
{
    // Do stuff here with Cursor's getXXX method
    // ex. String data = dbCursor.getString(0);
    dbCursor.moveToNext();
}
dbCursor.close();
于 2013-05-22T13:11:59.047 回答