Mysql
 sql >> Datenbank >  >> RDS >> Mysql

beste Weg, um zwei Datenbankserver anzurufen

Angenommen user_id ist ein long .

PreparedStatement psUserLocation = conB.prepareStatement("SELECT location FROM B.users WHERE user_id = ?");
while(rs.next()) {
    //call select statement for database B to get the location for each user id
    long userId = rs.getLong(user_id);
    psUserLocation.setLong(1, userId)
    ResultSet userLocation = ps.executeQuery();
    // Do whatever with the location(s)
}

BEARBEITEN :eine Abfrage für alle Benutzer statt einer Abfrage pro Benutzer:

private final static String QUERY = "SELECT user_id, location FROM B.users WHERE user_id IN (%a)";

StringBuilder userList = new StringBuilder();
while(rs.next()) {
    long userId = rs.getLong(user_id);
    userList.append(userId);
    if (!rs.isLast()) {
        userList.append(",");
    }
}

String usersLocationQuery = QUERY.replaceAll("%a", userList.toString());
PreparedStatement psUsersLocation = conB.prepareStatement(usersLocationQuery);
ResultSet usersLocation = psUsersLocation.executeQuery();
// Do whatever with the locations

Denken Sie daran, dass dies fehlschlagen/falsch funktionieren kann, da die meisten DBs ein Limit dafür haben, wie viele Elemente ein SQL IN enthält Klausel enthalten kann. Auch diese zweite Methode könnte eine SQL-Injection auf %a ermöglichen Ersatz.