直接贴代码图以及代码块,亲测可行,代码很简单这里不再介绍是什么意思了,相信小伙伴们都懂 嘿嘿
相关代码块如下,小伙伴们可以直接COPY执行
相关代码如下:import pymssqllistConn = []num = 40000i = 0while num > 0: num = num -1 i = i + 1 strConn = pymssql.connect(host='.',database='ReportServer') listConn.append(strConn) print('当前打开连接数:', i)
上面的代码中,连接数据库字符串这里简单解释下,因为懒猫用的是本机测试的所以链接字符串可以简写。
大家如果需要测试其它服务器上面的数据库,链接字符串可以这么写:
strConn = pymssql.connect(host='.',user='sa',password='123456',database='ReportServer')