问题描述
- androdi SQLite的SQL语法错误
-
public ArrayList<String> getCitiesFromCountry(int countryCode){ ArrayList<String> cityNames = new ArrayList<String>(); Cursor cursor = sqLiteDatabase.rawQuery("SELECT * FROM " + COUNTRY_TABLE + " LEFT JOIN " + CITY_TABLE + " ON " + COUNTRY_TABLE + "." + _ID + " = " + CITY_TABLE + "." + _ID2 + " WHERE " + COUNTRY_TABLE + "." + _ID + " = ?", new String{"1"}); if (cursor != null){ while(cursor.moveToNext()){ cityNames.add(cursor.getString(cursor.getColumnIndex(CITY_NAME))); } } return cityNames; }
数据库包含:
public static final String WORLD_DATABASE = "world_database"; public static final String COUNTRY_TABLE = "country_table"; public static final String CITY_TABLE = "city_table"; public static final int DATABASE_VERSION = 1; public static final String _ID = "_id"; public static final String _ID2 = "_id2"; public static final String COUNTRY_NAME = "country_name"; public static final String CITY_NAME = "city_name";
运行不起来,有SQL语法编译错误。
时间: 2025-01-03 21:53:07