전체 글
-
파이썬 용어 정리국비 교육 내용 정리 2023. 8. 24. 15:37
(1) 용어정리1 # -*- coding: utf-8 -*- """ Created on Thu Aug 24 09:40:40 2023 @author: wlstn """ """ # F9 키로 한줄또는 선택영역 실행 # 한줄 주석 """ # 여러줄 주석 ''' 여려줄 주석 여러줄 주석은 나중에 문자열 표현에서도 사용됨. ''' print('hello') print('hello') # 여러개의 데이터 화면에 출력 print(10,20,30,40,50) # 문자열을 여러번 출력 print("abc"*3) print("abc"*3) # 문자열+숫자 안됨. print("학번:"+100) #오류발생 print("학번",100) print("학번"+"100") # 문자열간의 +연산은 가능함 print("학번:" + st..
-
homeController -> Service -> Dao 의 흐름Back end/SpringBoot 2023. 8. 8. 15:07
* homeController 생성 package com.example.demo.controller; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import com.example.demo.service..
-
-
-
-
oracle lock걸리는거 해제한 커맨드 목록 (feat: 강사님)DB/Oracle(DB) 2023. 7. 25. 12:35
Microsoft Windows [Version 10.0.19045.3208] (c) Microsoft Corporation. All rights reserved. C:\Users\Parkjinsu>sqlplus system/1111 SQL*Plus: Release 11.2.0.2.0 Production on 화 7월 25 12:13:51 2023 Copyright (c) 1982, 2014, Oracle. All rights reserved. ERROR: ORA-01017: invalid username/password; logon denied Enter user-name: system Enter password: Connected to: Oracle Database 11g Express Edition..
-
-
Travel & Resturant db 설계Team Project 2023. 7. 10. 17:10
CREATE TABLE Travel ( destination_id INT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, member_id INT, date1 VARCHAR(255), -- 오픈일 date2 VARCHAR(255), -- 휴무일 location VARCHAR(255), -- 지역명 name VARCHAR(255), -- 여행지명 address VARCHAR(255), -- 주소명 review VARCHAR(255), -- 리뷰(out ->in) details VARCHAR(255) -- 세부정보 ); INSERT INTO Hotels ( date1, date2, location, name, address, review) VALUES ('상시개방', 'NULL',..