본문 바로가기

develop72

MYSQL 테이블 컬럼명 조회 쿼리 SELECT column_name, column_commentFROM INFORMATION_SCHEMA.columns WHERE table_schema='계정명' AND table_name='테이블명' ORDER BY ordinal_position; 2019. 1. 3.
이클립스 초기 설정 업데이트 중 1. JSP validation 해제Web > JSP Files > Validation > Validate JSP Fragments의 체크 해제 Window - Preferences > Web > Validation > JSP 부분 build 체크 해제 2. 이클립스 파일 검색 후 오픈 시 기존 창 유지 및 새창으로 열리게 Window - Preferences > General > Search > "Reuse editors to show matches 체크 해제 2018. 12. 20.
이클립스 search 후 기존 창 유지 및 새창 열리도록 하는 법 Window - Preferences > General > Search > "Reuse editors to show matches 체크 해제 2018. 12. 20.
ajax 패턴 Examples:Save some data to the server and notify the user once it's complete.12345678$.ajax({ method: "POST", url: "some.php", data: { name: "John", location: "Boston" }}) .done(function( msg ) { alert( "Data Saved: " + msg ); });Retrieve the latest version of an HTML page.1234567$.ajax({ url: "test.html", cache: false}) .done(function( html ) { $( "#results" ).append( html ); });Send an xml doc.. 2018. 12. 20.
윈도우에서 긴 파일명 삭제 1. cmd 실행2. 폴더를 생성 ->폴더를 하나 생성 ex) c:\tempfolder ->삭제할 파일이 있는 폴더가 c:\ecripse 라고 한다면 -> 커맨드 창에 robocopy c:\tempfolder c:\ecripse /mir 입력! 출처: https://gocoder.tistory.com/21 [고코더 IT Express] 2018. 12. 20.
MySQL 에서 DATETIME 형식 조회 할 시 빠르게 조회하는 법 datetime을 int형으로 저장, 검색시 처리결과가 더 빠르게 나온다.기존 날짜 검색 시 : DATE_TIME BETWEEN '2018-04-30' AND '2018-12-30' INT형으로 검색 시 : DATE_TIME BETWEEN 1356966000 AND 1372518000 2018. 4. 11.