본문 바로가기

Contenteditable 와 Input 차이 Contenteditable vs InputContenteditable and Input can be quite similar. Both you can click, then you can change the text inside. So where’s the difference and when should you use which one?ContenteditableWith contenteditable, you can modify a html snippet. Usually the html on a website is “view-only” meaning you can’t just click somewhere and then edit the html. But as soon as you add the conten.. 더보기
JDBC와 DBCP의 차이 오늘 일과중에 예전에 학원에서 같이 교육받았던 동생한테서 연락이 와서이런 저런 얘기를 나누다가 요즘은 뭐 배우고 있냐고 물었더니, JDBC랑 DBCP를 배웠는데갑자기 DBCP가 더 빠르다고 말한다. 왠지 어감이 JDBC와 DBCP의 관계를 오해하는 것 같아, 이 글을 포스팅 하게 되었다. JDBC와 DBCP의 정의JDBC : Java Data Base Connectivity. 한글로 번역하면, 자바 데이터 베이스 연결. 정의는 DataBase와 연결하기 위한 Java Interface이다.DBCP : DataBase Connection Pool. 역시 간단하게 정리하면 DataBase와 Connection을 맺고 있는 객체를 관리하기 위한 Connection Pool 일반적인 JDBC의 프로세스는 다음과.. 더보기
error_reporting() https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=132745 error_reporting(E_ALL) -> 사소한 에러메세지까지 출력합니다. 즉, 배열에 값이 없는 키값을 불러오는 것도 에러로 취급합니다. 즉, 보통 배열에 키값이 없으면 그냥 ""(빈값)으로 치부하지만, 위 명령을 수행하면, 에러로 인식해버립니다. 즉, 프로그램 수정등이 아니면 위 명령어는 사용하지 마세요 더보기