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 |
Tags
- bard 100% 신뢰금지
- 갤럭시탭 with Pen
- chatgpt vs bard
- 전세보증보험
- 나는 어디로?
- 가장 많이 사용되는 파이썬 라이브러리
- Google vs MicorSoft
- Google vs OpenAI
- 상업시설용지 분양
- 종합과세
- PostgreSQL
- robux
- 가장 인기있는 파이썬 라이브러리
- 주상복합용지 분양
- 2룸 오피스텔 투자
- 임대소득외 추가소득이 있을 경우
- 주택임대사업자
- 데이터 리터러시
- chatgpt 100% 신뢰금지
- 가장 많이 사용되는 파이썬 패키지
- 공개서적
- 소형주택 세액감면
- 종합소득세
- 라이브러리 vs 패키지
- 오피스텔투자
- 파이썬 TypeError
- 오라클 데이터베이스 내장함수
- Python
- 다주택임대
- 가장 인기있는 파이썬 패키지
Archives
목록pyton (1)
All thing of the world!
python postresql 데이터베이스 접속 코딩(connection code)
python으로 postgresql 데이터베이스에 접속하는 코드(coding)를 정리한다. 1. psycopg2 설치 pip install psycopg2 2. connection 코드 작성 import psycopg2 try: cnx = psycopg2.connect(user='scott', password='password', host='127.0.0.1', database='employees') except psycopg2.Error as err: print(err) else: cnx.close() 끝.
IT/python
2023. 4. 29. 18:52