
[MSSQL] 월의 시작일, 월의 마지막 일자 구하기 --월의 시작일 SELECT LEFT(CONVERT(VARCHAR(10), DATEADD(M, 1, GETDATE()), 112) , 6 ) + '01'; --월의 마지막 날짜 SELECT DATEADD(D, -1, CONVERT(DATE, LEFT(CONVERT(VARCHAR(10), DATEADD( M, 1, GETDATE()), 112) , 6 ) + '01', 112) ); --또는 마지막 날짜 구하는 함수 사용 SELECT EOMONTH(GETDATE());

https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL HTMLCanvasElement.toDataURL() The HTMLCanvasElement.toDataURL() method returns a data URI containing a representation of the image in the format specified by the type parameter (defaults to PNG). The returned image is in a resolution of 96 dpi. developer.mozilla.org canvas toDataURL 퀄리티 및 사이즈 조절 var fullQuality = canvas..

[oracle 오류 내용] System.Data.OleDb.OleDbException: Oracle 클라이언트 및 네트워킹 구성 요소가 없습니다. 이 구성 요소는 Oracle Corporation에서 제공하며 Oracle 버전 7.3.3 또는 그 이후 버전의 클라이언트 소프트웨어 설치의 일부입니다. 공급자가 작동하려면 이 구성 요소가 설치되어야 합니다 [oracle 오류 원인] IIS가 권한등의 이유로 오라클에 접근을 못해서 나는 에러 [oracle 오류 해결] 1. 오라클 홈 디렉토리(C:\oracle\ora92)에서 권한 추가 (IIS_USER) 2. IISRESET

동적 qr코드 만들기 jquery qrcode js 다운로드 받기 https://jeromeetienne.github.io/jquery-qrcode/ https://jeromeetienne.github.io/jquery-qrcode/ jquery.qrcode.js jquery.qrcode.js is jquery plugin for a pure browser qrcode generation. It allow you to easily add qrcode to your webpages. It is standalone, less than 4k after minify+gzip, no image download. It doesnt rely on external services which go o jeromeetie..

동적 QR 코드 만들기 (구글API 이용) Getting Started with Infographics | Infographics | Google Developers Important: While the dynamic and interactive Google Charts are actively maintained, we officially deprecated the static Google Image Charts way back in 2012. It was turned off on March 18, 2019. This page describes the basics of using the infographics serv developers.google.com 간단하게 chl 파라미터에 url이나 코드를 입..