본문 바로가기

Programming424

오라클 페이징 Paging일반적인 오라클 페이징 처리?123456789101112131415161718SELECT * FROM ( SELECT A.*, ROWNUM AS RNUM, FLOOR((ROWNUM-1)/{디스플레이수}+1) AS PAGE, COUNT(*) OVER() AS TOTCNT FROM ( {검색쿼리 - 정렬이 필요할 경우 정렬조건 포함} ) A) WHERE PAGE = {페이지번호}; OR SELECT * FROM ( SELECT A.*, ROWNUM AS RNUM, COUNT(*) OVER() AS TOTCNT FROM ( {검색쿼리 - 정렬이 필요할 경우 정렬조건 포함} ) A) WHERE RNUM > {범위부터} AND RNUM 참고http://devhome.tistory.com/22http:/.. 2015. 6. 19.
한글상태일 경우 글자수 찾기 한글상태일 경우 글자수 찾기 입력모드가 한글인 상태로 타이핑을 하고, 이것이 영어단어일 경우에 영어로 변경하기 위한 데이터 추출 프로그램을 작성합니다.ab aba abaca abaci aback abacus abaft abalone abandon abandoned abandoner절대 한글로 칠 수 없는 단어도 있지만, 한글과 겹치는 단어들도 존재합니다. 이를 구별할 필요가 있습니다. ?12345678910111213HashMap mWords = new HashMap();List mWordList = new ArrayList();List mMoumList = new ArrayList();List mDoubleJaum = new ArrayList();List mDoubleMoum = new ArrayLis.. 2015. 5. 19.
[AHk] 구글 검색 핫키를 등록하고 구글 검색을 합니다. ; Search highlighted term in Google#g::{bak = %clipboard%Clipboard =SetKeyDelay, 40 ; could be set at the top of the script instead.Send, {ctrl down}{c down}{c up}{ctrl up}ClipWait, 2if ErrorLevel{ MsgBox, The attempt to copy text onto the clipboard failed. return}Run, http://www.google.com/search?q=%Clipboard%clipboard = %bak%}Return 핫키로 윈도우+g (Google)를 등록합니다. Send ^c 를 입력하.. 2015. 4. 9.
[AHK] SplitPath # SplitPath http://www.autohotkey.com/docs/commands/SplitPath.htm 파일명 또는 URL 에서 이름, 디렉토리, 확장자, 드리아브로 분리합니다. SplitPath, InputVar [, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive] # 예제 FullFileName = C:\My Documents\Address List.txt ; To fetch only the bare filename from the above: SplitPath, FullFileName, name ; To fetch only its directory: SplitPath, FullFileName,, dir ; To fetch all.. 2015. 4. 8.
C# LINQ GROUP BY C# LINQ GROUP BY using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace testLinq1{ class Student { public String name {get;set;} public int[] score {get;set;} public String clazz { get; set; } public int qty { get; set; } }} using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace testLinq1{ cl.. 2015. 4. 8.
[AHK] 한영전환 없이 가능한 영어 단어를 모두 핫스트링으로 등록하면, 한영전화 키를 누를 필요없이 해당 영어 단어를 키순서대로 입력하면 자동으로 변환되도록 합니다. 한영 상태를 확인합니다.IME_CHECK(WinTitle){ WinGet,hWnd_abs,ID,%WinTitle% Return Send_ImeControl(ImmGetDefaultIMEWnd(hWnd_abs),0x005,"")} Send_ImeControl(DefaultIMEWnd, wParam, lParam){ DetectSave := A_DetectHiddenWindows DetectHiddenWindows,ON SendMessage 0x283, wParam,lParam,,ahk_id %DefaultIMEWnd% if (DetectSave A_DetectHid.. 2015. 4. 8.