MySQL与高级属性的连接

时间:2015-07-30 11:17:32

标签: java mysql scala jdbc mysql-workbench

当我通过mysql jdbc驱动程序创建与MySQL数据库的新连接时,我在MySQL Workbench中看到了下一个高级属性:

enter image description here

我们可以看到下一个属性:

  • _runtime_version
  • _client_version
  • _client_name
  • _client_license
  • _runtime_vendor

我们如何管理这些属性?

MySQL Workbench创建的连接具有其他属性: enter image description here

如何设置' program_name'连接创建时的属性或我自己的属性?

1 个答案:

答案 0 :(得分:0)

答案在本文Connection attributes in MySQL 5.6

中找到

有一个带有附加属性的url示例:

jdbc:mysql://localhost/login?connectionAttributes=program_name:Login Server,other_name:other

enter image description here