Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
刚刚发布了两个新的 Azure 服务,Azure Database for MySQL和PostgreSQL,作为一个 Java 开发人员我想知道如何连接它们,常规的 JDBC 驱动程序是否仍然有效?
MySQL 和 Postgres as-a-service 使用已经存在的驱动程序/sdk 访问。只需从门户获取连接字符串,然后进行连接。
创建数据库实例后,您将在门户中看到所有连接字符串:
是的,它可以工作,只是您必须将 @ 附加到连接字符串的用户名部分。
jdbc:postgresql:// servername .postgres.database.azure.com:5432/{your_database}?user=@ servername &password={your_password}&ssl=true