如何获取 JDBC 连接 url 字符串
我不知道为什么我找不到这个。我的库采用 jdbc 连接对象,我需要为不同的连接(可能是不同的数据库)支持一些不同的元数据,所以我想我可以使用连接 URL 字符串作为我的地图的键,但我找不到它。
有没有办法从连接对象获取连接 URL 字符串?
I don't know why I can't find this. My library takes a jdbc connection object and I need to support some different meta-data for different connections (which may be to different databases) so I figure I could use the connection URL string as the key for my map but I can't find it.
Is there any way to get the connection URL string from a connection object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Connection.getMetaData().getURL()
或其他方法之一(例如DatabaseMetadata.getDriverName()
)将为您提供有关数据库连接的信息。Connection.getMetaData().getURL()
or one of the other methods such asDatabaseMetadata.getDriverName()
will give you information about the database connection.