python mysql 삽입 데이터 오류 오류 Failed processing format - parameters; 'int' object is not iterable

한참 을 하고 서 야 문 제 를 찾 았 다.오류 가 계속 발생 했 습 니 다. Failed processing format - parameters;int' object is not iterable
4. 567913. 이런 방식 으로 데 이 터 를 삽입 하려 면 반드시 배열 형식 이 어야 하기 때문에 다음 과 같이 바 뀌 었 다.
data = (0, 'this is title', 'this is abstract', 'image-url', 'views', 'time', 'http:\\www.baidu.com', '     ')
sql = "insert into table_name(id ,title,abstract,image,views,time,href,comments) values(%s,%s,%s,%s,%s,%s,%s,%s)"
try:
    cursor.executemany(sql, data)
except Exception as e:
    print(str(e) + 'insert exception')
conn.commit()

됐 습 니 다.
데이터 업데이트 오류: 1064 (42000): SQL 구문 에 오류 가 있 습 니 다.check the manual that corresponds to your MySQL server version for the right syntax to use near '%s where href = %s' at line 1 update  exception
이 문제 도 val 은 배열 이 필요 합 니 다. 배열 로 바 꾸 면 다음 과 같 습 니 다.
data = [(0, 'this is title', 'this is abstract', 'image-url', 'views', 'time', 'http:\\www.baidu.com', '     ')]

다음으로 변경:
cursor = conn.cursor()
sql = "update ecs_news_qczj set article=%s where href = %s"
val = ('123467',hrefu)
try:
    cursor.executemany(sql,val)
except Exception as e:
    print(str(e) + ' update  exception')
conn.commit()

모두 가 시행 착 오 를 적 게 걷 는 것 을 도 울 수 있 기 를 바란다.

좋은 웹페이지 즐겨찾기