다른 명령
데브카페에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2025년 5월 23일 (금) 20:51 Devcafe 토론 기여님이 PANDAS 와 SQL 쿼리 문서를 삭제 취소했습니다 (판 1개)
- 2025년 5월 16일 (금) 23:19 Devcafe 토론 기여님이 PANDAS 와 SQL 쿼리 문서를 삭제했습니다 (내용: "=== pandas 이용하여 sql 쿼리 조회 === <source lang=sql> import cx_Oracle import pandas as pd import json # Function to load the configuration file def load_db_config(file_path): with open(file_path, 'r') as f: config = json.load(f) return config # Load the database configuration from the JSON file db_config = load_db_config('db_config.json') dsn_tns = cx_Oracl...". 유일한 편집자는 "Devcafe" (토론))
- 2024년 10월 15일 (화) 01:49 Devcafe 토론 기여님이 PANDAS 와 SQL 쿼리 문서를 만들었습니다 (새 문서: === pandas 이용하여 sql 쿼리 조회 === <source lang=sql> import cx_Oracle import pandas as pd import json # Function to load the configuration file def load_db_config(file_path): with open(file_path, 'r') as f: config = json.load(f) return config # Load the database configuration from the JSON file db_config = load_db_config('db_config.json') dsn_tns = cx_Oracle.makedsn(db_config['host'], db_config['port'], service_name=db_config['service_name']) connect...)