Dictionary 커서
CODEDRAGON ㆍDevelopment/Python
반응형
Dictionary 커서
· Connection 으로부터 Dictionary Cursor 생성해서 사용합니다.
· cursor() 메서드 안에 DictCursor를 파라미터로 지정하면 디폴트인 Array based cursor가 아닌 Dictionary based cursor를 사용하게 됩니다.
# Connection 으로부터 Dictoionary Cursor 생성 curs = conn.cursor(pymysql.cursors.DictCursor)
|
parameter |
description |
conn.cursor() |
· 디폴트값 · Array based cursor는 Row의 결과값을 배열로 (PyMyMsql에서는 튜플tuple형태) 리턴합니다. |
conn.cursor(pymysql.cursors.DictCursor) |
· cursor 생성시 cursor() 메서드 안에 DictCursor 옵션을 주면, Row 결과를 Dictionary 형태로 리턴합니다. |
'Development > Python' 카테고리의 다른 글
Binary file(바이너리 파일) (0) | 2020.02.23 |
---|---|
MySQL DML 사용 절차 (0) | 2020.02.23 |
MySql 사용 절차 (0) | 2020.02.23 |
DML(INSERT, UPDATE, DELETE) (0) | 2020.02.23 |
? Placeholder (0) | 2020.02.23 |