数据库
首页 > 数据库> > jdbc:oracle:thin:@xxx.xxx.xxx.xxx:1521:orcl

jdbc:oracle:thin:@xxx.xxx.xxx.xxx:1521:orcl

作者:互联网

jdbc:oracle:thin:@xxx.xxx.xxx.xxx:1521:orcl

jdbc:表示采用jdbc方式连接数据库

oracle:表示连接的是oracle数据库

thin:表示连接时采用thin模式(oracle有thin和oci两种方式,thin不需要安装客户端,oci需要安装客户端)

@xxx.xxx.xxx.xxx:表示IP地址

1521:表示端口号

orcl:表示数据库实例

详解参考https://www.cnblogs.com/qingxinblog/p/4043173.html

标签:jdbc,xxx,orcl,thin,oracle,1521
来源: https://www.cnblogs.com/muhai/p/15465080.html