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(下载)
  • 相关阅读:
    inline必须在定义、实现都标记
    循环数组优化队列
    游程编码的优化
    新密码
    I Could Have Danced All Night
    strtok源码 bitset 空间压缩
    XOR Swap
    补码
    临时邮箱
    linux中find批量删除空文件夹
  • 原文地址:https://www.cnblogs.com/HD/p/3620120.html
Copyright © 2011-2022 走看看