일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- STS
- jsp
- SpringSource Tool Suite
- Web Service
- scrollView
- Bootstrap
- Apache Lucene
- 자바
- html
- varags
- Redirect
- C#
- 자바스크립트
- MANTIS
- TextBox
- Eclipse
- WebView
- decompiler
- 이클립스
- 웹 서비스
- MS-SQL
- Java
- 안드로이드
- 웹뷰
- javascript
- asp.net
- MSsql
- 컬럼명
- Android
- Maven
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
There isn't any bug in Eclipse, the problem is the order of elements. Correct Incorrect [출처] Error with JSTL tags in eclipse
객체지향 이론에서의 클래스화(classification)와 일반화(generalization) 관계를 알아보자. 이 관계를 이해하기 위해서는 먼저 Type과 Object의 의미를 이해해야 한다. Type과 Object란 무엇인가? - Type 은 개념을 의미한다. UML에서는 Class로 표현된다. (= Concept, Class) - Object 는 Type이 인스턴스화된 실체를 의미한다. 예를 들어, 우리집에서 키우는 누렁이, 이웃집에 있는 삽삽이는 Object 이고, 이러한 Object들은 개(Dog)라는 Type의 인스턴스이다. Classification(클래스화)란, Type과 Object 와의 관계이다. 객체들이 특정개념에 속할 때, 클래스화 관계로 나타낼 수 있다. (↔ 인스턴스화, inst..
alter table table_name add default default_value for column_name 예) alter table OP_SEC_MAP add default getdate() for publish_datetime
자바에서 저장 프로시저를 사용하기 위한 코드는 다음과 같다. Connection con=null; ResultSet rs=null; CallableStatement cs=null; try{ String url="jdbc:oracle:thin:@00.0.0.000:1521:orcl"; String id="id"; String pass="password"; Class.forName("oracle.jdbc.driver.OracleDriver"); con = DriverManager.getConnection(url, id, pass); //프로시저 불러내고 cs=con.prepareCall("{call TEST_PR(?,?,?)}"); //인자값 넣고 cs.setString(1,"2006"); cs.setStr..