Oracle SQL Developer 19.2.1 Windows x64 下载安装与配置方法
下载
- 访问 Oracle 官网下载页面:https://www.oracle.com/tools/downloads/sqldev-downloads.html
- 从 “Oracle SQL Developer” 底部下载栏中,选择 “Windows” 操作系统
- 选择 “Oracle SQL Developer v19.2.1” 版本进行下载
安装
- 双击下载的安装程序文件,开始执行安装程序
- 选择 “Next” 进行下一步
- 在 “Choose Install Location” 页面,选择安装的位置,建议选择默认位置
- 在 “Specify Oracle JDK that this product should use” 页面,选择 “Use Java installed with the product”
- 或者也可以选择 “Use existing JDK” 并指定 JDK 的安装路径
- 在 “Installation progress” 页面,等待安装程序执行完成即可
- 点击 “Close” 完成安装
配置
- 打开 Oracle SQL Developer 19.2.1
- 在弹出的首次使用向导中,点击 “Accept License Agreement” 同意许可协议
- 在 “JDK Installation” 页面,选择使用的 JDK
- 在 “Database Information” 页面,输入数据库连接信息,如 host、port、sid 等
- 测试连接
- 点击 “Save and Test” 保存配置
示例 1
假设需要连接 Oracle 数据库,配置如下:
- Hostname: 127.0.0.1
- Port: 1521
- Sid: orcl
- Username: scott
-
Password: tiger
-
打开 Oracle SQL Developer
- 点击 “New Connection” 按钮添加新的数据库连接
- 在 “Connection Name” 页面,输入一个名称,比如 “My Oracle DB”
- 在 “Connection Type” 页面,选择 “Oracle”
- 在 “Hostname” 页面,输入 “127.0.0.1”
- 在 “Port” 页面,输入 “1521”
- 在 “Sid” 页面,输入 “orcl”
- 在 “Username” 页面,输入 “scott”
- 在 “Password” 页面,输入 “tiger”
- 点击 “Test” 按钮测试连接
- 如果连接成功,则点击 “Save” 保存连接
示例 2
假设需要连接 MySQL 数据库,配置如下:
- Hostname: localhost
- Port: 3306
- Username: root
-
Password: root
-
打开 Oracle SQL Developer
- 点击 “New Connection” 按钮添加新的数据库连接
- 在 “Connection Name” 页面,输入一个名称,比如 “My MySQL DB”
- 在 “Connection Type” 页面,选择 “MySQL”
- 在 “Hostname” 页面,输入 “localhost”
- 在 “Port” 页面,输入 “3306”
- 在 “Username” 页面,输入 “root”
- 在 “Password” 页面,输入 “root”
- 点击 “Test” 按钮测试连接
- 如果连接成功,则点击 “Save” 保存连接
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Oracle SQL Developer 19.2.1 Windows x64 下载安装与配置方法 - Python技术站