• 2022-06-14
    下面选项的MySQL数据库URL正确的是
    A: jdbc:mysql://localhost/company
    B: jdbc:mysql://localhost:3306:company
    C: jdbc:mysql://localhost:3306/company
    D: jdbc:mysql://localhost/3306/company
  • C

    内容

    • 0

      数据库的连接字符串可以定义为”jdbc:mysqp://localhost:3306:company”。

    • 1

      中国大学MOOC: jdbc:mysql://localhost:3306/student中,student表示访问的数据库名称。

    • 2

      mysql数据库的jdbcUrl路径值为: :mysql://localhost:3306/数据库名

    • 3

      DriverManager类的getConnection(String url,String user,String password)方法中,参数url的格式为jdbc::,下列哪个url是不正确的?() A: "jdbc:mysql://localhost:80/数据库名" B: "jdbc:odbc:数据源" C: "jdbc:oracle:thin@host:端口号:数据库名" D: "jdbc:sqlserver://172.0.0.1:1443;DatabaseName=数据库名"

    • 4

      连接MySQL数据库的正确方法是() A: mysqli_open("localhost"); B: mysqli_connect("localhost"); C: connect_mysqli("localhost"); D: dbopen("localhost");