本地连接mysql的url怎么写?
本地连接mysql的url的书写形式:
一、jdbc:mysql:///中三条斜杠(///) 第三个/代表什么?
jdbc:mysql:///testdatabase等同于 jdbc:mysql://localhost:3306/testdatabase ,testdatabase指的是数据库名称也就是说第三个'/'代表 'localhost:3306/',"/"其实就是说从根目录开始的意思。
二、也可以写成jdbc:mysql://localhost:3306/testdatabase
三、同样也可以写成jdbc:mysql://127.0.0.1:3306/testdatabase
推荐:MySQL教程
来源:PY学习网:原文地址:https://www.py.cn/article.html