Advertisement
Guest User

Untitled

a guest
Feb 19th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception:
  2.  
  3. try {
  4. Class.forName("com.mysql.jdbc.Driver");
  5. connection = DriverManager.getConnection("jdbc:mysql://91.121.170.224:3306/db140", "user140",
  6. "mofpZO3g");
  7. statement = connection.createStatement();
  8. String query = "select * from players";
  9. resultset = statement.executeQuery(query);
  10. while (resultset.next()) {
  11. Log.i(TAG, "Что то есть");
  12. }
  13. Log.i(TAG, "Агась");
  14. } catch (Exception e) {
  15. Log.e(TAG, "Ошибка загрузки базы: ", e);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement