- 博客(2)
- 收藏
- 关注
原创 Python如何使用GBase 8a调用存储过程和一次执行多条sql语句
GBase 8a中的execute()函数也可以同时执行多条语句,但需要使该函数中的multi_stmt参数的值为True;使用callproc()函数可以调用存储过程。1、创建数据库连接:from GBaseConnector import connectconfig = { 'host': '你的数据库IP地址', 'user': 'username', 'password': 'passwd', 'port': 5258, # 默认为5258 'db': 'test', 'char
2021-12-06 14:58:32 1759
原创 GBase 8a如何在Python3数据库驱动中使用LOAD加载语句
在GBase 8a中使用LOAD命令需要借助execute()函数。1、首先创建数据库连接:from GBaseConnector import connectconfig = { 'host': '你的数据库IP地址', 'user': 'username', 'password': 'passwd', 'port': 5258, # 默认为5258 'db': 'test', 'charset': 'utf-8', # 指定编码格式 'connect_timeout': 1000,
2021-12-06 13:39:46 716 3
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人