ORA-01036: illegal variable name/number 잘못된 변수명/번호 |
cx_oracle 이용할때 힘들었던 것 정리 import pandas as pd import cx_Oracle import os # Dataframe 불러오기 df = pd.read_csv('sector_2020-10-06 0.csv',usecols=[1,2,3,4,5,6,7]) df = df.fillna('') #NaN 제거 print(df) os.putenv('NLS_LANG', '.UTF8') LOCATION = r"C:/oracle/instantclient_11_2" os.environ["PATH"] = LOCATION+";"+os.environ["PATH"] #연결에 필요한 기본 정보 (유저, 비밀번호, 데이터베이스 서버 주소) db = cx_Oracle.connect('user','PASSWO..
2020. 10. 6.