Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코로나바이러스
- 확진자수
- 창궐
- 치앙마이
- sharonchoi
- 필리핀사망
- 봉준호감독통역사
- 진짜영웅
- cnn
- 조현병
- 봉준호감독통역
- 신종코로나
- 어서와한국은처음이지
- 전염병
- wuhan
- everybody wants you
- 코로나19
- parasite
- 코로나
- 우한 코로나
- 우한
- 최성재
- 미중
- 웨일즈
- 우한코로나바이러스
- 중국외교부
- 정은경 본부장님
- red hearse
- 우한코로나
- Bolton
Archives
- Today
- Total
오지's blog
mysql관련 python 프로그램 에러 TypeError: not all arguments converted during string formatting 본문
개발노트/데이터베이스
mysql관련 python 프로그램 에러 TypeError: not all arguments converted during string formatting
잡스러운노트, 잡스노트 2021. 3. 15. 22:23728x90
반응형
분명 sqlite에서는 발생하지 않은 에러가 mysql로 변경하니 발생한다.
에러 메세지는 TypeError: not all arguments converted during string formatting
sql = """INSERT INTO test_tb(id, name) VALUES(?,?)""" # ERROR
sql = """INSERT INTO test_tb(id, name) VALUES(%s,%s)""" # 에러 발생하지 않음
def insert_one_row(conn, insert_vals):
print(type((insert_vals)))
sql = """INSERT INTO test_tb(id, name) VALUES(?,?)""" # ERROR
# sql = """INSERT INTO test_tb(id, name) VALUES(%s,%s)"""
cur = conn.cursor()
cur.execute(sql, insert_vals)
conn.commit()
sql_print(sql)
return cur.lastrowid
?에서 %로 변경하면 에러 발생하지 않음
'개발노트 > 데이터베이스' 카테고리의 다른 글
sqlalchemy.exc.OperationalError: (mariadb.OperationalError) Unknown server host '@ip_address' (0) | 2021.10.21 |
---|---|
MYSQL 접속시 public key retrieval is not allowed 에러 해결방법 (0) | 2021.10.21 |
MYSQL설치 후 설정 Ubuntu 20.04 기준 (0) | 2021.10.21 |
csv파일을 DB에 넣기(pandas이용) (0) | 2021.09.30 |
postgres 설치 및 원격접속 설정 (0) | 2021.09.15 |
Comments