我具有以下功能,该功能应该批量插入IPv6 IP列表

def insertToDb(ipList):
  print("OK")
  try:
    conn = psycopg2.connect("dbname='mydb' user='myuser' host='hanno.db.elephantsql.com' password='mypass'")
  except:
    print("I am unable to connect to the database")
  cur = conn.cursor()
  try:
    cur.executemany("INSERT INTO ip (ip) VALUES(%s)", ipList)
    conn.commit()
  except Exception as e: print(e)
  print("Inserted!")


我收到以下消息


  并非在字符串格式化期间转换了所有参数


需要什么正确的格式?

最佳答案

使用executemany,您可能只需要将ipList转换为如下所示的元组列表:

params = [(ip,) for ip in iplist]
cur.executemany("INSERT INTO ip (ip) VALUES(%s)", params)


或者,您也可以将构建列表的方式更改为:

ipList.append((address,))

09-13 13:26