mysql-如何在Workbench中区分数据库连接
用途
连接mysql数据库的连接较多时,需要区分各个连接的用途,除了通过用户名来区分以外,本文讲解如何通过jdbc扩展属性来识别数据库连接信息
默认连接方式
DriverManager.getConnection("jdbc:mysql://127.0.0.1/d1?user=u1&password=123456");
添加扩展属性
String att = "connectionAttributes=newAtt:测试属性";
DriverManager.getConnection("jdbc:mysql://127.0.0.1/d1?user=u1&password=123456&" + att);
演示效果
参考
https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-reference-configuration-properties.html
https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-usagenotes-connect-drivermanager.html#connector-j-examples-connection-drivermanager