일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 맨시티
- 마동석
- export
- 네이마르
- 맨유
- UX/UI
- 프로젝트
- 마티치
- 바르셀로나
- jQuery
- 레스터
- 파탄잘리
- 이클립스
- 아스널
- HTML
- UI/UX
- 치차리토
- 유벤투스
- JavaScript
- 첼시
- 라카제르
- jsp
- 베식타스
- 오피셜
- HTML/CSS
- 루카쿠
- Eclipse
- HTML 제어
- CSS
- 간편정리
- Today
- Total
목록IT (42)
Be a groovy man by positive thinking
repository 추가 oracle ORACLE JDBC Repository https://code.lds.org/nexus/content/groups/main-repo dependency 추가 com.oracle ojdbc6 11.2.0.3
1. INSERT기본 INSERT INTO 테이블명(컬럼1, 컬럼2, ...)VALUES(데이터1, 데이터2, 데이터3, ...) 다른 INSERT INTO 테이블명(컬럼1, 컬럼2, ...)SELECT 컬럼 1, 컬럼2, 컬럼3, ...FROM 테이블 명WHERE 조건; 2. UPDATE기본 UPDATE 테이블명 SET 컬럼1 = '입력할 값',컬럼2 = '입력할 값',컬럼3 = '입력할 값'WHERE 조건; 다른 UPDATE 테이블명SET 컬럼1 = ( SELECT * FROM 테이블명 WHERE 조건 )WHERE 조건 3. DELETE DELETEFROM 테이블명WHERE 조건;
==sys계정 접속sqlplus /nologconn /as sysdba *위방법으로 했을때insufficient privileges이 뜨면서 관리자 계정 접근이 안될때sqlplus /nologconnect sys/oracle as sysdba 입력 ==계정 만들기(sys에서)create user 계정명 identified by 비번 default tablespace users; ==계정 권한주기(sys에서)grant resource, dba, connect to 계정명; ==계정 락 풀기(sys에서)alter user 계정명 account by unlock ==계정 비번 지정(sys에서)alter user 계정명 identified by 비번; == 패스워드 변경(sys에서)ALTER USER 계정명 I..
이클립스에서 Preferences -> General -> Content Types -> Text -> java Source File : Default encoding 에 EUC-KR를 적고 업데이트를 눌러준다.
간단정리 1. jQuery - HTML 제어 1) append() - 컨텐츠를 선택된 요소(태그) "내부"의 끝 부분에서 추가 $(selector).append(content,content,content...) $(selector).append(function(index)) - content : 텍스트, 태그..HTML elements,jQuery objects ,DOM elements - function(index) index - 추가되는 요소의 인덱스 $("p").append("Some appended text."); This is a paragraph.여기에 추가 This is another paragraph.여기에 추가 2) prepend() - 콘텐츠를 선택한 요소 "내부"의 시작 부분에서 추가..
간단정리1. jQuery - 애니메이션 효과1) $(selector).animate({속성들},speed,callback); - 속성들 : CSS 속성 중 위치나 크기 관련 속성 - speed : "slow", "fast", or milliseconds - 효과를 실행시킬 객체의 속성 중 position:absolute, relative, fixed 중 하나로 설정 되어 있어야 함 $("button").click(function(){ $("div").animate({left: '250px'}); }) $("button").click(function(){ $("div").animate({ left: '250px', opacity: '0.5', height: '150px', width: '150px' });..
간단정리 [자바스크립트] - 동적 기능 수행 1. 함수필터 선택자1) :eq(n) : n 번째 위치하는 문서객체 0부터 시작2) :gt(n) : n 번째 초과하는 문서객체3) :lt(n) : n 번째 미만에 위치하는 문서객체4) :header : , 문서 객체 모두5) :hidden : hidden 문서객체 모두 2.events1) $("선택자").이벤트명(function(){ // action goes here!!});$(document).ready(function(){ $("p").click(function(){ $("p:first").css("background-color", "yellow"); });}); 2)on() Method: 선택한 요소에 한개 이상의 이벤트 연결$("선택자").on({ 이..
간단정리1. jQuery- 모든 브라우저에서 동작하는 클라이언트 자바스크립트 라이브러리- 무료로 사용 가능한 오픈 소스 라이브러리- document 객체 모델과 관련된 처리를 쉽게 구현- jQuery를 내려받으려면 http://jquery.com에 접속- CDN 호스트를 사용하는 방법- $(document).ready(function(){ }); window.onload = function () {} 1) 기본 구조 - $(선택자).메서드() - $ - sign to define/access jQuery $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); 2) 기본 선택자 - element의 태그명 : $("..
1. Inside which HTML element do we put the JavaScript? ① ② ③ ④ 2. What is the correct JavaScript syntax to change the content of the HTML element below? This is a demonstration. ① #demo.innerHTML = "Hello World!"; ② document.getElementByName("p").innerHTML = "Hello World!"; ③ document.getElementById("demo").innerHTML = "Hello World!"; ④ document.getElement("p").innerHTML = "Hello World!"; 3. Whe..
간단정리1. event1)실행했을때 다른 대상에 영향을 줌이벤트대상.on이벤트이름 = function { 이벤트 핸들러 }window.onload=function(){ b.onclick = a;}function a(){ b.style.backgroundColor = "red";} - 이벤트대상 : window 객체 - 이벤트이름 : load - 이벤트속성 : onload - 이벤트핸들러 : function 의 내용 2. script function a(){ b.style.backgroundColor = "red"; } - 이벤트 대상은 id가 "b"인 객체 - 이벤트 이름 : click - 이벤트 속성 : onclick - 이벤트 핸들러 : a() 3. Mouse Events1)onClick - 마우스로..