전체 글
-
kimho_board queryData Base/MySQL 2008. 4. 17. 10:48
mysql> create table board( -> b_id int not null primary key, -> b_name varchar(20) not null, -> b_mail varchar(30), -> b_title varchar(60), -> b_content text, -> b_date datetime, -> b_view int, -> b_pwd varchar(12)); Query OK, 0 rows affected (0.20 sec)
-
user insert 쿼리Data Base/MySQL 2008. 4. 17. 10:38
Enter password: ********* Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.0.51a-community-nt MySQL Community Edition (GPL) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> create database mydb; Query OK, 1 row affected (0.03 sec) mysql> user mydb; ERROR 1064 (42000): You have an error in your SQL syntax; check the manua..
-
회원 테이블 생성 쿼리Data Base/MySQL 2008. 4. 11. 14:26
create table member (mem_id varchar(10) not null primary key, mem_pwd varchar(10) not null, mem_name varchar(20) not null, mem_addr1 char(3) not null, mem_addr2 char(3) not null, mem_addr3 varchar(100), mem_tel1 varchar(4), mem_tel2 varchar(4), mem_tel3 varchar(4), mem_mail varchar(40), mem_memo varchar(200) );
-
java context lookup프로그램/JAVA 2008. 4. 10. 17:54
lookup("xxxxxxx") 메소드는 괄호안에 있는 이름으로 객체를 찾아서 반환해주는 역할을 하는 메소드입니다. 그러니깐 DataSource ds = (DataSource)ctx.lookup("jdbc/MYWORK"); 이 소스에서 보면 jdbc/MYWORK라는 이름으로 되어 있는 어떠한 객체를 가지고 와서 DataSource형으로 케스팅하여 ds에 넣는것이 되겠죠 그리고 괄호안에 것이 무엇인가 하는 질문을 하셨는데 님의 소스를 토대로 말씀드리면 JNDI를 lookup으로 찾아서 가지고 온것이라고 할수 있죠. JAVA NAMING DIRECTORY INTERFACE라고 합니다. 검색하시면 뭔지 나올꺼에요. 제가 보기에 저 소스코드에서 저 jdbc/MYWORK는 커넥션풀에 이름을 넣은거 같네요.
-
ANT Error taskdef class org.apache.catalina.ant.RemoveTask cannot be found프로그램/ANT 2008. 4. 10. 16:58
BUILD FAILED: C:\projets\equinox\build.xml:164: taskdef class org.apache.catalina.ant.RemoveTask cannot be found 원래 Ant는 Command 패턴을 구현하고 있습니다. 하나의 Command는 Task라고 이름 지어져 있는데요. 여기에서 Class를 로딩해서 execute를 실행하도록 되어 있죠. 그런데, 여기에서 나온 익셉션의 경우엔 그 클래스를 로딩할 때, 해당 클래스가 없다는 뜻이군요. 결국 package명이 org.apache.catalina.ant이고 클래스 명이 RemoveTask인 클래스를 클래스 패스에 추가해 주시기 바랍니다. You need to set CATALINA_HOME in your envir..
-
mysql 을 설치했는데...자꾸 삐삐 거리면서 신경 거스르는 소리가 났지만 해결.Data Base/MySQL 2008. 4. 10. 16:03
http://opensource.apress.com/article/46/removing-the-beep-from-mysqls-console 페이지에 보면 To stop the dreaded beep on Windows, you can also type ‘net stop beep’ at the command line. 콘솔 창에 net stop beep. 삐삐 소리가 난게 beep 음이라고 하는거 같은데... 싸이트에 제거 하는 방법이 여러개 있었는데 저 명령어가 킹왕짱인듯.
-
ANT Error_The element type "project" must be terminated by the matching end-tag "</project>".프로그램/ANT 2008. 4. 10. 10:32
다음과 같이 썼더니 ANT 상에서 에러가 발생하였다. 에러 내용은 다음과 같다. Buildfile: build.xml BUILD FAILED C:\workspace\Ant_Test\build.xml:31: The element type "project" must be terminated by the matching end-tag "". Total time: 0 seconds 라고 나는 에러. 원인은...