我这边有多个程序需要同时运行
然后程序是这样的,我想问问这算几个链接啊
import pymysql
class c():
def __init__(self):
self.con = pymysql.connect()
self.cursor = self.con.cursor()
def insert(self):
while True:
data = i
insert into table # 一直在插入
i+=1