Prog.Lang. or Query/Java 썸네일형 리스트형 Java Regular Expression Regular Expression Syntax: Here is the table listing down all the regular expression metacharacter syntax available in Java: Subexpression Matches ^ Matches beginning of line. $ Matches end of line. . Matches any single character except newline. Using m option allows it to match newline as well. [...] Matches any single character in brackets. [^...] Matches any single character not in brackets \.. 더보기 Spring 090411 보호되어 있는 글입니다. 더보기 JDBC, JDBC Driver, MySql 연동 테스트, 한글처리(톰캣) ▣ JDBC - JDBC는 데이터베이스를 다루기 위한 자바 API(Application Programming Interface)이다 - 자바를 기반으로 하는 프로그램을 작성할 때 프로그래머에게 데이터베이스를 쉽게 다룰수 있게 합니다. - JDBC를 통해서 어떠한 DBMS일지라도 질의문을 던져서 데이터를 가져올 수 있습니다. 1. JDBC Driver - JDBC는 JDBC 인터페이스와 JDBC 드라이버로 구성 - JDBC 인터페이스 : 데이터베이스와 연동되는 프로그램을 작성할 수 있게 하는 도구라 할 수 있습니다. - JDBC 드라이버 : JDBC 인터페이스를 구현하여 실제로 DBMS를 작동 시켜서 질의를 던지고 결과를 받습니다. 자바 프로그램 JDBC DBMS (JSP, Server 등) JDBC 인터.. 더보기 이전 1 다음