安装DatabaseLibrary:pip install robotframework-databaselibrary
一、连接oracle数据库
1、安装cx_Oracle插件(需要与python、oracle、win版本保持一致)
在线安装:pip install cx_Oracle
(官方地址:https://pypi.python.org/pypi/cx_Oracle/5.1.3)
2、下载oci.dll、oraocci11.dll、oraociei11.dll放入Python相关目录下(D:\Python27\Lib\site-packages)
(可以下载相关instantclient_11_2.zip,该zip包中包含)
3、在RF中引入library
3、使用(Connect To Database Using Custom Params cx_Oracle 'username','password','ip:port/servername')
二、mysql数据库(待验证)
1、安装pymysql插件(在线安装:pip install PyMySQL)