본문 바로가기
728x90
반응형

DB/DataBase4

[MS SQL] 설치와 Debeaver 연동 1. MSSQL 설치https://www.microsoft.com/ko-kr/sql-server/sql-server-downloads 설치 후 다음과 같은 화면에서 SSMS를 설치합니다.https://learn.microsoft.com/ko-kr/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16&redirectedfrom=MSDN Download SQL Server Management Studio (SSMS)Download the latest version of SQL Server Management Studio (SSMS) for managing and configuring instances of SQL Server and Az.. 2025. 3. 5.
[MongoDB - Python] Python으로 mongoDB에 데이터 쓰고 읽기 1. python에서 mongoDB용 library를 설치한다. python -m pip install pymongo 확인해보기 from pymongo import MongoClient from pymongo.cursor import CursorType host = "localhost" port = "27017" mongo = MongoClient(host, int(port)) print(mongo) 2. python에서 mongoDB CRUD를 위한 Class를 작성한다. class DBHandler: def __init__(self): host = "localhost" port = "27017" self.client = MongoClient(host, int(port)) def insert_item_.. 2022. 2. 15.
[MongoDB] MongoDB 설치하기 1. MongoDB 다운로드 https://www.mongodb.com/try/download/community MongoDB Community Download Download the Community version of MongoDB's non-relational database server from MongoDB's download center. www.mongodb.com 2. 설치 한 뒤 - 설치 시 mongoDB Compass(UI)도 같이 설치하면 편하다(자동 설치됨) 3. cmd 창에서 해당 폴더로 이동 후 data folder 생성 cd C:/Program Files/MongoDB/Server/5.0/bin mkdir C:/data/db mongod 차례로 입력하면 여러가지 설정 및 저장된.. 2022. 2. 15.
[MariaDB]CRUD 현재 Create Read Update : update 를 수행해보기 위해서 위의 데이터에 임의로 TEST04를 INSERT 한 뒤, 이를 TEST03으로 바꿔보자. Delete 2021. 2. 16.
728x90
반응형