본문 바로가기

파워빌더

[파워빌더]DB에 저장된 이미지 다운로드 하기 string ls_path, ls_file, ls_emp_cdblob lb_image, lb_templong ll_filelen, ll_retinteger li_loop, i, li_file ll_ret = dw_1.getrow() if ll_ret = 0 then returnls_emp_cd = dw_1.getitemstring(ll_ret, 'as_emp_cd') selectblob empnp_pic into :lb_image from inse98t1 where empno = :ls_emp_cd using sqlca; IF SQLCA.SQLCode = -1 THEN MessageBox("SQL error", SQLCA.SQLErrText)END IF ll_filelen = len(lb_image)if.. 더보기
[파워빌더] 이미지 DB에 저장하기 bloblb_temp, lb_totintegerli_filenum, li_index, li_loopStringls_file, ls_filename, ls_emp_cd, ls_pathlongll_filelen, ll_read, ll_rowcnt, i, ll_cnt if GetFileOpenName("JPG,BMP File",ls_file,ls_filename,"JPG","JPG Files, *.JPG,BMP Files, *.BMP") = 1 thenll_filelen = FileLength(ls_file)li_filenum = FileOpen(ls_file,StreamMode!,Read!,LockRead!) if li_filenum -1 thenif ll_filelen > 32765 thenif mod(l.. 더보기
PowerBuilder에서 Daum 우편번호 API 사용하기 ※ PowerBuilder에서 Daum 우편번호 API 사용하기 1) 다음(Daum)에서 적용하는 javascript API 코드를 복사해서 HTML화일을 생성한다. - postcode_new.html - Daum API에 대한 정보는 http://postcode.map.daum.net/guide - 아래 소스는 Daum에서 제공하는 예제 소스내용입니다. - 2) Web서버의 특정 위치에 postcode_new.html를 복사 3) 인터넷창(IE,크롬)에서 해당 html을 호출이 가능한지 테스트 진행 - http://웹서버주소/postcode_new.html - 상단과 같이 나오면 다음 API를 사용할수 있음. 4) PowerBuilder OLE인 Microsoft Web Browser를 이용해서 htm.. 더보기