mysql.getlasteffectrecords
功能说明
描述
返回上一步操作影响的行数。(对增删改查都有效)
函数原型
mysql.getlasteffectrecords(hd)
参数
名称 | 类型 | 描述 |
---|---|---|
hd | 整型 | 已经打开的mysql数据库句柄 |
返回值
类型 | 描述 |
---|---|
整型 | 执行成功返回行数,执行失败返回-1 |
备注
可能出现的错误信息,执行 getlasterror 函数获取具体详细信息:
- 错误编码=getlasterror()
- 错误信息=getlasterror(1)
错误编码 | 错误信息 |
---|---|
1400 | 参数类型不正确 |
1100 | 不存在的句柄 |
示例
def test():
arr={"ip":"外部数据库的ip","user":"外部数据库的账号","pwd":"外部数据库的密码","port":3306}
hd=mysql.open(arr,"test")
if(hd!=-1):
mysql.begin(hd)
for i in range(0,100):
mysql.exec(hd,"insert into test values(null,\'测试\');")
print(mysql.getlasteffectrecords(hd))
mysql.close(hd)
演示示例
- 暂无
安装包下载
- 暂无
相关视频
- 暂无