是否可以在不使用PHP的情况下使用MySQL数据库中的数据填充微调器?我在这个问题上进行了很多搜索,发现的每个示例都包含一个使用PHP(通常是JSON)的解决方案。

最佳答案

您需要从Java App打开数据库连接并获得所需的所有结果。

例如:

SQLiteDatabase db = LlistaRevisionsClientsActivity.getDB(context);
Cursor cursorp = db.rawQuery("select * from table", null);
try
{
    if (cursorp.moveToFirst())
    {
        if (productesRevisionsClientsCursor.moveToFirst())
        {
           do{
               lst.add(cursorp.getString(cursorp
                  .getColumnIndex("nom")));
           } while (cursorp.moveToNext());
        }
   }
 }finally
 {
   cursorp.close();
 }
spinner = (Spinner) findViewById(R.id.productes_spinner);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
        android.R.layout.simple_spinner_item, lst);
// Specify the layout to use when the list of choices appears
adapter.setDropDownViewResource(R.layout.spinner_productes);
// Apply the adapter to the spinner
spinner.setAdapter(adapter);

10-08 15:21