文章
· 九月 16, 2022 阅读大约需 1 分钟

Python应用程序连接到InterSystemsIRIS数据库 - 使用 DB-API

连接前准备:

  1. Python 开发环境
  2. DB-API驱动:irispython wheel 文件
  3. Connection String

步骤:

  1. 安装irispython wheel 文件
    pip install intersystems_irispython-3.2.0-py3-none-any.whl
  2. Connection String:其中import iris 用来导入iris, connection = iris.connect是connection string。connection.close()用来断开连接。
    import iris
    
    def main():
       connection_string = "localhost:1972/USER"
       username = "SQLAdmin"
       password = "deployment-password"
    
       connection = iris.connect(connection_string, username, password)
    
       # when finished, use the line below to close the connection
       # connection.close()
    
    if __name__ == "__main__":
       main()
讨论 (0)1
登录或注册以继续