需要一點幫助。在Exception中有一些問題,我在使用這個庫時很新穎。感謝提前:)用HashMap編寫語句,異常
錯誤:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''common_translations.name' as nm JOIN ('common_translations.name_id' as nid)
我的代碼:
private DatabaseConnection db;
private final HashMap <String, String> statements;
public DatabaseReader(DatabaseConnection db) {
statements = new HashMap<String, String>() {
private static final long serialVersionUID = -1827340576955092045L;
{
put("odds","vfl::%");
put("common_translations", "vhc::%");
put("common_translations","vdr::%");
put("common_translations", "vto::%");
put("common_translations","vbl::%");
put("common_translations", "vf::%");
put("odds","vsm::%");
put("odds", "rgs::%");
put("odds", "srrgs::%");
}};
this.db = db;
}
public void read() {
try {
Connection connection = db.connect(db.getUrl_common_translation());
PreparedStatement ps = (PreparedStatement) connection.prepareStatement("SELECT nm.id, nid.key, nm.name FROM ? as nm JOIN (? as nid)\r\n" +
" ON (nm.id = nid.id) where nid.key like ? and nm.typeId=8 and nm.sourceId=-1 and nm.languageCode='en'");
for(Entry <String,String> e : statements.entrySet()) {
ps.setString(1, e.getKey() + ".name");
ps.setString(2, e.getKey() + ".name_id");
ps.setString(3, e.getValue());
ResultSet rs = ps.executeQuery();
while(rs.next()) {
int id = rs.getInt("id");
//String tag = rs.getString("tag");
//String translation = rs.getString("translation");
System.out.println(id);
}
}
} catch (SQLException e) {
e.printStackTrace();
}
}
您不能使用''佔位符系統來代替表名或列名,它僅適用於價值。 – Berger
哦,好的,謝謝。你有沒有任何建議可以聰明地做到這一點? –
也許你可以使用'StringBuilder'來根據目標表建立你的查詢字符串。 – Berger