zoukankan      html  css  js  c++  java
  • 三大数据库默认端口

    1.Oracle数据库的默认端口:1521

    Url:"jdbc:oracle:thin:@localhost :1521:orcl";

    DriverName:"oracle.jdbc.driver.OracleDriver";

    2.MySQL数据库的默认端口:3306

    Url:jdbc:mysql://localhost:3306/test? user=root&password=xxxxx; (MySQL5系列)

    DriverName:"com.mysql.jdbc.Driver";

    
    

    Url:jdbc:mysql://localhost:3306/test? user=root&password=xxxxx&serverTimezone=UTC&characterEncoding=utf-8&useSSL=false; (MySQL8系列)

    DriverName:"com.mysql.cj.jdbc.Driver";

    3.sqlserver数据库的默认端口号为:1433

    URL:"jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=dbname";

    DriverName:"com.microsoft.jdbc.sqlserver.SQLServerDriver";

     

  • 相关阅读:
    k8s-istio记录
    k8s
    单词 -(动物)
    RxJs
    .netcore 3.1 unbuntu
    单词规整
    AutoMapper
    时间
    ye
    特殊权限
  • 原文地址:https://www.cnblogs.com/abcdjava/p/11689468.html
Copyright © 2011-2022 走看看