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 |
Tags
- 어서와한국은처음이지
- 중국외교부
- 코로나19
- red hearse
- 코로나바이러스
- 코로나
- 우한 코로나
- 우한코로나바이러스
- 진짜영웅
- Bolton
- 조현병
- 최성재
- parasite
- everybody wants you
- 우한
- cnn
- sharonchoi
- wuhan
- 웨일즈
- 미중
- 창궐
- 신종코로나
- 필리핀사망
- 우한코로나
- 전염병
- 봉준호감독통역사
- 확진자수
- 봉준호감독통역
- 치앙마이
- 정은경 본부장님
Archives
- Today
- Total
오지's blog
AttributeError: 'OptionEngine' object has no attribute 'execute' 에러 해결 방안 본문
개발노트/데이터베이스
AttributeError: 'OptionEngine' object has no attribute 'execute' 에러 해결 방안
오지구영ojjy90 2023. 4. 19. 16:55728x90
반응형
df = pd.read_sql_query(sql = sql, con = mysql_conn)
AttributeError: 'OptionEngine' object has no attribute 'execute'
다음과 같이 변경 필요
df = pd.read_sql_query(sql = text(sql), con = mysql_conn.connect())
reference.
'개발노트 > 데이터베이스' 카테고리의 다른 글
distinct와 order by를 함께 쓰려고 할때 (0) | 2023.06.28 |
---|---|
airflow에서 select값을 가져오는 방법 (0) | 2023.04.18 |
DELETE시 의문의 에러 메세지 (0) | 2023.04.11 |
insert into select 시 특정 컬럼만 제외하고 SELECT하는 방법 - SNOWFLAKE (0) | 2023.04.05 |
snowflake에서 select시 where절의 서브 쿼리 between이용 하여 정제 (0) | 2023.03.16 |
Comments