Which three connector/J connection strings can be used to connect to the MYSQL server?
A.
Jdbc:mysq1://localhost/test?user =xxx&password=xxx
B.
Jdbc :mysqli://localhost/test?user=xxx&password=xxx
C.
Jdbc :mysql:replication://master,slave1.slave2. /test?user=xxx&password=xxx
D.
Jdbc:mysql:proxy://localhost/test?user=xxx&password=xxx
E.
Jdbc :mysql:loadbalance://master.slave1,slave2/test?user=xxx&password=xxx
ACE
ACE
https://dev.mysql.com/doc/connector-j/en/connector-j-reference-configuration-properties.html
jdbc:mysql://localhost:3306/sakila?profileSQL=true
jdbc:mysql:replication://master,slave1,slave2,slave3/test
jdbc:mysql:loadbalance://localhost:3306,localhost:3310/sakila
A C E
ACE