본문 바로가기 메뉴 바로가기

DDOO.B.LAB

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

DDOO.B.LAB

검색하기 폼
  • C A T E G O R I E S (65)
    • 배움과 복습 (26)
    • JavaScript (2)
    • HTML&CSS (6)
    • Python (2)
    • 배움의 독백 (6)
    • 아이폰 카톡 테마 (0)
    • DBMS (17)
      • Oracle 11g (17)
    • aJax (0)
    • about Git-Hub (2)
    • myBatis (1)
    • Spring Framework (1)
  • 방명록

C A T E G O R I E S (65)
0. Spring Framework 시작하기(설정)

스프링이란 보통 스프링 프레임워크를 말하는데, DI 지원, AOP 지원, MVC 웹 프레임워크 제공, JDBC/JPA 등 DB연동 지원 등의 기능이 주요 특징이다. Maven: 프로젝트 형상관리 automaticallyhow to?(Dynamic project ro Maven Project) Project>우클릭>config>convert to Maven Project spring.io>PROJECT>Spring Framework//스프링 관련 라이브러리를 긁어와서 쓰면 됩니다. 4.0.0 Spring1705 Spring1705 0.0.1-SNAPSHOT war src maven-compiler-plugin 3.3 1.8 1.8 maven-war-plugin 2.6 WebContent false org...

Spring Framework 2018. 1. 9. 10:24
0. myBatis 시작

.jar 파일 설치http://mybatis.github.io/mybatis-3/ko/index.htmlhttps://code.google.com/p/mybatis/ or http://blog.mybatis.org mapper를 만들기 위한 기본 골격 ... select 문장 update 문장 insert 문장 delete 문장 Mapper 상단

myBatis 2018. 1. 2. 14:13
요즘 자주 보이는 css 중 border-radius 스타일

code { background-color: #000; font-style: normal; border-radius: 10px; color: white; padding: 5px 15px; font-family: menlo, monospace; }

배움의 독백 2017. 12. 6. 20:28
1. 깃텁(Git-Hub) 왕기초

Press Enter to submit, or type 'help' and press Enter for info on using the console $ help You can type in these commands and hit enter: Command Instructions help print this message next go to the next challenge previous go to the previous challenge clear clear the console answer show you the answer to this challenge (-75 points) $ git help usage: git [--version] [--exec-path[=]] [--html-path] [..

about Git-Hub 2017. 12. 6. 20:28
0. 깃텁 배워보기! (git-hub tutorial)

The name of our remote is origin and the default local branch name is master. The -u tells Git to remember the parameters, so that next time we can simply run git push and Git will know what to do.-u: git에게 parameters를 저장시켜서 다음번에 쉽게 run git push 할 것. [Pulling Remotely]We've invited other people to our GitHub project who have pulled your changes, made their own commits, and pushed them. $ git pul..

about Git-Hub 2017. 12. 6. 20:01
이클립스에서 만들어진 프로젝트 배포

1. 톰캣 포트 조정: 포트 세 개를 웹서버용과 톰캣용을 분리. (이크립스의 서버를 삭제하고 다시 설정하기 전까지는 1회만 작업. )2. 웹 프로젝트를 배포용 압축 파일 작업(war파일): 이클립스>프로젝트명 마우스 우클릭>export>war file(소스 포함 주의할 것)3. 웹서버의 관리자 모드로 로그인.4. war파일을 웹서버에 적용.

배움과 복습 2017. 11. 13. 09:25
CSS TIP

WEB CONCEPTSCSS Box Model: illustrates the space and boundary properties of an HTML element that can be controlled using CSS.CSS SKILLSborder: sets the outline of an HTML page element, like a picture frame that contains the element. padding: sets the amount of space between an element's content and its border. margin: sets the amount of space between an HTML element and the next nearest element(..

HTML&CSS 2017. 11. 6. 16:13
JDBC에서 오라클의 커서를 사용하는 방법

1. 오라클 패키지에서 커서 타입을 정의2. 오라클의 function 정의 - 변수의 정의를 1번에서 정의된 패키지를 커서로 사용3. 자바에서 function 호출4. 반환된 값을 ResultSet으로 캐스팅하여 사용.

배움과 복습 2017. 10. 20. 09:22
15. PL/SQL - Procedure(프로시저), Function(함수), Package(패키지), Trigger(트리거)

PL/SQL - Oracle Sub-Program: Procedure(프로시저) create [or replace] procedure procedure_name [( parameter1 [mode1] datatype1, parameter2 [mode2] datatype2, ...)] is | as PL/SQL block; 1) 사번을 입력받아 해당 사원의 급여를 5000으로 수정하시오(procedure).CREATE PROCEDURE up_sal(vid employees.employee_id%type) IS BEGIN UPDATE EMPLOYEES SET SALARY = 5000 WHERE EMPLOYEE_ID = vid; END; EXEC up_sal(206); SELECT FIRST_NAME, SAL..

카테고리 없음 2017. 10. 16. 11:53
14. PL/SQL - 조건문(if, elsif), 반복문(loop~end loop), 커서(Cursor)

IF~ THEN~ END IF; 1) 임의의 성적을 사용하여 학점을 구하시오. DECLARE score number(3); grade varchar2(2); BEGIN score := 88; if score BETWEEN 90 and 100 then grade:= 'A'; end if; if score BETWEEN 80 and 89 then grade:= 'B'; end if; if scoreBETWEEN 70 and 79 then grade:= 'C'; end if; if scoreBETWEEN 60 and 69 then grade:= 'D'; end if; if score5000 AND r.sal5000 and r.sal9; END LOOP; i:=2; dan := dan+1; exit when d..

DBMS/Oracle 11g 2017. 10. 16. 09:23
이전 1 2 3 4 ··· 7 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • 작은설탕의 달콤한 인생로그
TAG
  • NVL()
  • 멤버 클래스
  • NVL2()
  • SELECT절 명령어
  • DECODE()
  • !(not)
  • 중첩 클래스
  • DI(의존성 주입)
  • SQL Operator
  • casring
  • IS RECORD
  • IN(var1 var2 var3)
  • hierarchical query
  • 계층형 쿼리
  • GROUP BY절
  • 데이터 딕셔너리
  • z-dindex
  • 복수행 함수
  • implements
  • 상속
  • tables in htmll
  • Maven Project
  • CLASS
  • FileChannel
  • 테이블 데이터 복사
  • 타입변환과 다형성
  • 로컬 클래스
  • Generic Type
  • Interface
  • MONTH_BETWEEN
more
«   2025/07   »
일 월 화 수 목 금 토
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 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바