본문 바로가기

잡동87

CORDOVA https://cordova.apache.org/docs/en/latest/guide/platforms/android/index.html Android Platform Guide - Apache Cordova Android Platform Guide This guide shows how to set up your SDK environment to deploy Cordova apps for Android devices, and how to optionally use Android-centered command-line tools in your development workflow. You need to install the Android SDK regardles cordova.apache.org 필요준비물.. 2020. 6. 2.
VSCODE 플러그인 테마 https://marketplace.visualstudio.com/items?itemName=sdras.night-owl Night Owl - Visual Studio Marketplace Extension for Visual Studio Code - A VS Code theme for the night owls out there. Now introducing Light Owl theme for daytime usage. Decisions were based on meaningful contrast for reading comprehension and for optimal razzle dazzle. ✨ marketplace.visualstudio.com 파일 아이콘 https://marketplac.. 2020. 6. 2.
현재시간 기본값설정 : CURRENT_TIMESTAMP 예전버전의경우 datetime형 default값 설정에 NOW()가 사용가능했다 하지만 최근에는 DEFAULT CURRENT_TIMESTAMP 를 사용한다. CURRENT_TIMESTAMP 2020. 5. 15.
컴퓨터에 api-ms-win-crt-runtime-l1-1-0.dll이(가) 없어 프로그램을 시작할 수 없습니다. 컴퓨터에 api-ms-win-crt-runtime-l1-1-0.dll이(가) 없어 프로그램을 시작할 수 없습니다. 프로그램을 다시 설치하여 이 문제를 해결하십시오. https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads Cookies are disabled Please enable cookies and refresh the page support.microsoft.com 재배포가능패키지 다운받아서 설치 설치중 오류가발생 그래서 VisualStud.. 2020. 3. 6.
DELETE LEFT JOIN 조인을통해서 조인된 결과 모두 삭제 DELETE A,B FROM sample_A A LEFT JOIN SAMPLE_B B ON A.idx = B.a_idx WHERE A.id = '' A값과 B값 설정에 따라서 삭제범위가 변경 가능하다 DELETE A FROM : A삭제 DELETE A,B FROM : A,B둘다삭제 DELETE A FROM : B삭제 조심해서 쓰자 잘못쓰면.. 2020. 2. 18.
시구동 관련 법정동 자료 https://www.code.go.kr/stdcode/regCodeL.do 법정동코드목록조회 - 행정표준코드관리시스템 www.code.go.kr 행정표준코드관리 시스템에서 자료를 받아서 가공 엑셀파일 및 sql파일을 업로드해두었다. 시,구,동을 적절히 쿼리해서 원하는 결과값을 뽑아서 활용함 SELECT dong FROM sigudong WHERE si = ? and gu = ? GROUP BY dong SELECT gu FROM sigudong WHERE si = ? GROUP BY gu 2020. 1. 17.
ROWNUM SELECT @ROWNUM:=@ROWNUM+1 as rownum, ci.* FROM sample sp,(SELECT @ROWNUM:=0) R WHERE 1=1ORDER BY rownum DESC,sp.idx DESC LIMIT 0,10 2020. 1. 13.
lastInsertId 최근등록한 값의 id를 반환 AUTO_INCREMENT에 따라 생성된 최근 ID $db->liastinsertId(); https://www.php.net/manual/en/pdo.lastinsertid.php PHP: PDO::lastInsertId - Manual I think I get a nice solution in Postgres to get the ID using the RETURNING that comes with Postgress since version 8.2. In the example below, I add to my insert clause the "returning" along with the primary key of my table, then after the execute,.. 2019. 8. 14.
Fiddler를 이용한 모바일환경 디버깅 피들러는 웹의 패킷을 살펴봐 디버깅할수있는 도구입니다. https://www.telerik.com/fiddler Fiddler - Free Web Debugging Proxy - Telerik Fiddler is a free web debugging tool which logs all HTTP(S) traffic between your computer and the Internet. Inspect traffic, set breakpoints, and fiddle with incoming or outgoing data. www.telerik.com 피들러 자체는 프록시 서버를 통해서 HTTP 프로토콜에 한해 패킷을 감청할수 있습니다. 모바일의 경우 공유기를 통하여 동일 네트워크를 사용한다는 전제하여 진행합.. 2019. 8. 13.