Я пытаюсь подключить мобильное приложение к серверу Postgresql (используя PgAdmin), но оно не работает, и выдает эту ошибку. Я пытался использовать в своем коде много форм URL, но это не сработало.
val url = "jdbc:postgresql://localhost/postgres"
val user = ""
val password = "password"
Class.forName("org.postgresql.Driver")
val db: Connection = DriverManager.getConnection(url, user, password)
db.close();
Я думаю, что мой URL неверен. Как мне это исправить?
PgAdmin DB:
Ошибка:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.codemobiles.project_eva/com.codemobiles.project_eva.FeedActivity}: org.postgresql.util.PSQLException: Something unusual has occurred to cause the driver to fail. Please report this exception.
Caused by: org.postgresql.util.PSQLException: Something unusual has occurred to cause the driver to fail. Please report this exception.
СПАСИБО !! !