URL用于标识数据库的位置,程序员通过URL地址告诉JDBC程序连接哪个数据库,
URL的写法为:
jdbc:mysql:[]//localhost:3306/test?参数名:参数值
常用数据库URL地址的写法:
Oracle写法:jdbc:oracle:thin:@localhost:1521:sid
SqlServer—jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=sid
MySql—jdbc:mysql://localhost:3306/sid
Mysql的url地址的简写形式(当数据库存放在本地时): jdbc:mysql:///sid
常用属性:useUnicode=true&characterEncoding=UTF-8