일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- POD
- MariaDB
- GUI
- 파이썬
- tensorflow
- Django
- Web Programming
- 딥러닝
- kubernetes
- 파이토치
- OpenCV
- Computer Vision
- Tkinter
- 컴퓨터 비전
- 장고
- paper review
- 데이터베이스
- Deep Learning
- numpy
- Docker
- FLASK
- vue.js
- 텐서플로우
- 웹 프로그래밍
- 논문 리뷰
- Python
- 그래픽 유저 인터페이스
- pytorch
- k8s
- yaml
- Today
- Total
목록PostgreSQL (2)
Maxima's Lab
안녕하세요, 오늘은 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 ..
안녕하세요, 오늘은 PostgreSQL & DBeaver Community 설치 및 사용 방법에 대해서 알아보겠습니다. https://www.postgresql.org/download/ PostgreSQL: Downloads www.postgresql.org 위의 링크에서 각 OS에 맞게 다운로드 및 설치를 해주시면 됩니다. 이어서, DBeaver Community 설치 경로는 다음과 같습니다. https://dbeaver.io/download/ Download | DBeaver Community Download DBeaver Community 24.0.2 Released on April 8th 2024 (Milestones). It is free and open source (license). Also..