zoukankan      html  css  js  c++  java
  • JDBC Driver

    • Infomix
      • Driver: com.informix.jdbc.IfxDriver
      • JDBC URL : jdbc:informix-sqli://<host>:<port>/<database>:informixserver=<dbservername>
      • Required File : ifxjdbc.jar(下载)
    • JavaDB/Derby
      • Driver Class : org.apache.derby.jdbc.ClientDriver
      • JDBC URL : jdbc:derby:net://<host>:<port1527>/<databaseName>
      • Required File : derbyclient.jar(下载)
    • Microsoft SQL Server 2000
      • Driver Class : com.microsoft.jdbc.sqlserver.SQLServerDriver
      • JDBC URL : jdbc:microsoft:sqlserver://<host>:<port1433>;DatabaseName=<database>
      • Required File : msjdbc.jar(下载)
    • Microsoft SQL Server 2005
      • Driver Class : com.microsoft.sqlserver.jdbc.SQLServerDriver
      • JDBC URL : jdbc:sqlserver://<host>[:<port1433>];databaseName=<database>
      • Required File : sqljdbc.jar(下载)
    • MySQL (Connector/J)
      • Driver Class : com.mysql.jdbc.Driver
      • JDBC URL : jdbc:mysql://<host>:<port3306>/<database>
      • Required File : mysql-connector-java-nn-bin.jar(下载)
    • Oracle (Thin JDBC Driver)
      • Driver Class : oracle.jdbc.driver.OracleDriver
      • JDBC URL :
        • jdbc:oracle:thin:@<host>:<port>:<SID>
        • jdbc:oracle:thin:@<host>:<port>/<service>
        • jdbc:oracle:thin:@<TNSName>
      • Required File : ojdbcxx.jar(下载)
    • Oracle (OCI JDBC Driver)
      • Driver Class : oracle.jdbc.driver.OracleDriver
      • JDBC URL :
        • jdbc:oracle:thin:@<host>:<port>:<SID>
        • jdbc:oracle:thin:@<host>:<port>/<service>
        • jdbc:oracle:thin:<TNSName>
      • Required File : ojdbcxx.jar(下载)
    • PostgreSQL
      • Driver Class : org.postgresql.Driver
      • JDBC URL : jdbc:postgresql://<host>:<port5432>/<database>
      • Required File : postgresql-nn.jdbc3.jar(下载)
  • 相关阅读:
    luogu P3801 红色的幻想乡
    [USACO07OPEN]吃饭Dining
    [SCOI2007]蜥蜴
    [SDOI2011]染色
    [USACO07DEC]Sightseeing Cows
    [HNOI2007]紧急疏散EVACUATE
    [ZJOI2009]假期的宿舍
    [SDOI2013]费用流
    [CQOI2009]跳舞
    使用chrony安装chrony
  • 原文地址:https://www.cnblogs.com/HD/p/3620120.html
Copyright © 2011-2022 走看看