본문 바로가기

서버

[SQL] 데이터 정의 및 타입 - INSERT 1. 데이터 삽입(INSERT INTO)테이블 이름은 RENAME 구문을 사용하여 변경할 수 있다.1) 구문INSERT INTO table_name [ ( attribute_list ) ] VALUES ( value_list ) [ ; ] INSERT INTO table_name DEFAULT [ VALUES ] [ ; ] table_name : 데이터를 생성하고자 하는 테이블 이름을 지정한다. attribute_list : 입력하고자 하는 값의 컬럼 이름을 지정한다. 만약 attribute_list를 명시하지 않으면 테이블에 정의된 모든 컬럼에 대한 값을 채워야 한다. 만약attribute_list에 일부 컬럼만 명시가 된다면 나머지 컬럼에는 정의된 디폴트 값이 할당되며 디폴트 값이 없을 경우 NULL.. 더보기
[Tomcat] server.xml 의 reloadable 속성 reloadableSet to true if you want Catalina to monitor classes in /WEB-INF/classes/ and /WEB-INF/lib for changes, and automatically reload the web application if a change is detected. This feature is very useful during application development, but it requires significant runtime overhead and is not recommended for use on deployed production applications. That's why the default setting for this at.. 더보기
웹 프로그래밍 언어별 no-cache (페이지 만료) 방법 언어별 no-cache 리스트 HTML ASP JSP PHP WML .. .. JSP의 사용예 테스트 페이지 만료,캐쉬설정 Expires Pragma Cache-Control no-cache 만료 및 Expires 헤더 만료일을 지정하는 헤더 Cache-Control 헤더 IE는 HTTP 1.1 Cache-Control 헤더를 지원한다 Pragma:no-cache 헤더 레거시 HTTP 1.0 서버는 Cache-Control 헤더를 사용할 수 없다. 이전 버전과 HTTP 1.0 서버와의 호환을 위해 Internet Explorer는 HTTP Pragma:no-cache 헤더의 특수한 사용을 지원한다 웹서버의 설정 또는 기타 각 프로그램에서 코딩으로도 제어 할 수 있다. [IIS] [HTML예제] [ASP예.. 더보기