
Java SE List of Popular Database Vendors and Drivers Link to Download jar files
Below are some of the most popular Databases that are supported by Database Vendors and links to download JDBC Driver/Connection jar files,
If you are looking for a complete list of Vendors, you can find it on Oracle's website:
Also, if you are looking for a list of all the supported JDBC Drivers for Databases you can find it here,
Supported JDBC Drivers and Databases
List of JDBC Driver Manager Class Names:
Database | DriverManager Class Name |
---|---|
Oracle | oracle.jdbc.driver.OracleDriver |
MySQL | com.mysql.cj.jdbc.Driver |
Microsoft SQL | com.microsoft.sqlserver.jdbc.SQLServerDriver |
IBM DB2 | com.ibm.db2.jdbc.net.DB2Driver |
postgreSQL | org.postgresql.Driver |
List of JDBC Database Vendor URL:
Database | Database Vendor URL |
---|---|
Oracle | jdbc:oracle:thin:@hostName:port:databaseName |
MySQL | jdbc:mysql://hostName:port/databaseName |
Microsoft SQL | jdbc:sqlserver://hostName;databse=databaseName |
IBM DB2 | jdbc:db2: hostName:port/databaseName |
postgreSQL | jdbc:postgresql://hostName:port/databaseName |
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Java equals method - Tutorial
- Unbound classpath container: JRE System Library [JavaSE-1.7]
- Spring Boot: @RequestBody not applicable to method
- Java 8: Steam map with Code Examples
- Java Program: Random Number Generator
- Java java.time.Clock class code examples [Java Date Time API]
- Fix: type argument is not within bounds of type-variable T
- [Fix] java.net.MalformedURLException: unknown protocol
- Java 7 addSuppression() and getSuppression() Exception Handling
- Convert Java Array to ArrayList Code Example
- How to Word-Warp Console logs in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Remove Trailing zeros BigDecimal Java
- CRUD operations in Spring Boot + JDBC
- [Java Threads] Should we extend Thread Class or implement Runnable interface
- Json Serialization and Deserialization using Java Jackson
- Create simple struts2 project using maven commands
- How to install Java OpenJDK 11 on Alpine Linux
- Unsupported major.minor version 52.0 in java
- Error: Can not find the tag library descriptor for
- Java: Convert String to Binary
- How to run Java Unit Test cases with Apache Maven?
- Java: Testing Private Methods in JUnit using reflection API Example
- Java JDBC Connection with MySQL Driver in VS Code + Troubleshooting
- Java Join Strings with Comma Separator
More Posts:
- JDBC SQLException Statement.executeQuery() cannot issue statements that do not produce result sets - Java
- Fix: ModuleNotFoundError No module named openpyxl - Python
- Change the default git branch name from master to main - Git
- Fetch More then 10 Links Per Page in Google Search Result - Google
- Bash Command to Empty a File in Terminal - Bash
- Microsoft Teams change default language - Teams
- Error : Invalid key hash.The key hash does not match any stored key hashes - Android
- [fix] Cannot connect to the Docker daemon at unix:var/run/docker.sock. Is the docker daemon running? - Docker