Detailed explanation and summary of the URL for database connection

Detailed explanation and summary of the URL for database connection

Detailed explanation and summary of the URL for database connection

JDBC URL = protocol name + sub-protocol name + data source name.

a. The protocol name is always "jdbc".
b. The subprotocol name is determined by the writer of the JDBC driver.
c. The data source name may also contain user and password information; this information can also be provided separately.

Several common database connections

1 —oracle—

Driver: Oracle.jdbc.driver.OracleDriver
URL: jdbc:oracle:thin:@machine_name:port:dbname
Note: machine_name: the name of the machine where the database is located;
port: port number, the default is 1521

2 —mysql—

Driver: com.MySQL.jdbc.Driver
URL: jdbc:mysql://machine_name:port/dbname
Note: machine_name: the name of the machine where the database is located;
port: port number, default is 3306

3 —SQL Server—

Driver: com.microsoft.jdbc.sqlserver.SQLServerDriver
URL: jdbc:microsoft:sqlserver://<machine_name><:port>;DatabaseName=<dbname>
Note: machine_name: the name of the machine where the database is located;
port: port number, the default is 1433

4 —DB2—

Driver: com.ibm.db2.jdbc.app.DB2Driver
URL: jdbc:db2://<machine_name><:port>/dbname
Note: machine_name: the name of the machine where the database is located;
port: port number, the default is 5000

The above is a detailed explanation of how to write the URL for database connection and a summary. If you have any questions, you can leave a message or discuss in the community of this site. Thank you for reading and I hope it can help you. Thank you for your support of this site!

You may also be interested in:
  • A brief analysis of using JDBC to operate MySQL requires adding Class.forName("com.mysql.jdbc.Driver")
  • About the setting of MySql link url parameters
  • How to use MySQL driverClassName and url

<<:  Three methods to modify the hostname of Centos7

>>:  React useMemo and useCallback usage scenarios

Recommend

CSS3 realizes various graphic effects of small arrows

It’s great to use CSS to realize various graphics...

Detailed explanation of Vue's monitoring method case

Monitoring method in Vue watch Notice Name: You s...

JavaScript implements class lottery applet

This article shares the specific code of JavaScri...

Use of MySQL query rewrite plugin

Query Rewrite Plugin As of MySQL 5.7.6, MySQL Ser...

Detailed explanation of Docker basic network configuration

External Access Randomly map ports Using the -P f...

MySQL server 5.7.20 installation and configuration method graphic tutorial

This article records the installation and configu...

2 methods and precautions for adding scripts in HTML

How to add <script> script in HTML: 1. You c...

The process of installing MySQL 8.0.26 on CentOS7

1. First, download the corresponding database fro...

Specific method to delete mysql service

MySQL prompts the following error I went to "...

Detailed explanation of the use of nohup /dev/null 2>&1

nohup command: If you are running a process and y...

Ant Design Blazor component library's routing reuse multi-tab function

Recently, there has been a growing demand for imp...

MySQL uses aggregate functions to query a single table

Aggregate functions Acts on a set of data and ret...

Problems with using wangeditor rich text editing in Vue

wangEditor is a web rich text editor developed ba...