250x250
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
- 딥러닝
- 그래픽 유저 인터페이스
- k8s
- Web Programming
- MariaDB
- 논문 리뷰
- pytorch
- OpenCV
- 파이토치
- Computer Vision
- 텐서플로우
- paper review
- FLASK
- Django
- vue.js
- 컴퓨터 비전
- kubernetes
- Python
- 웹 프로그래밍
- GUI
- yaml
- tensorflow
- 데이터베이스
- Docker
- 장고
- Deep Learning
- POD
- numpy
- 파이썬
- Tkinter
Archives
- Today
- Total
목록table (1)
Maxima's Lab
[Database, DB] psycopg2 패키지를 활용하여 PostgreSQL 사용하는 방법 (Table 생성, 삭제, Data 초기화)
안녕하세요, 오늘은 psycopg2 패키지를 활용하여, PostgreSQL (DB)를 사용하는 방법에 대해서 알아보겠습니다. 먼저, psycopg2 패키지를 설치합니다. pip install psycopg2-binary 이어서, DB에 연결하여, Table을 생성하는 방법에 대해서 알아보겠습니다. import psycopg2 conn = psycopg2.connect(host='localhost', database='postgres', user='postgres', password='', port=5432) cur = conn.cursor() print(cur.closed == 0) create_users_table = """ CREATE TABLE IF NOT EXISTS users ( user_id ..
Web Programming
2024. 4. 17. 00:19