在Android中执行原始的SQL查询并获取结果可以通过以下步骤:
public class DatabaseHelper extends SQLiteOpenHelper {
private static final String DATABASE_NAME = "mydatabase.db";
private static final int DATABASE_VERSION = 1;
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
// Create tables and initial data here
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// Upgrade database here
}
}
DatabaseHelper dbHelper = new DatabaseHelper(context);
SQLiteDatabase db = dbHelper.getReadableDatabase();
Cursor cursor = db.rawQuery("SELECT * FROM mytable", null);
if(cursor != null) {
while(cursor.moveToNext()) {
// Get data from cursor
String data = cursor.getString(cursor.getColumnIndex("column_name"));
}
cursor.close();
}
db.close();
在这个例子中,我们执行了一个简单的SELECT查询并遍历查询结果。你可以根据自己的需求编写更复杂的SQL查询,然后从Cursor中获取结果。
db.close();
通过这种方式,你可以在Android应用程序中执行原始的SQL查询并获取结果。请注意,必须谨慎处理用户输入,以避免SQL注入攻击。