일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- PostgreSQL
- 오픈소스
- MySQL
- AJAX
- Exception
- Tomcat
- Eclipse
- Open Source
- maven
- IntelliJ
- jpa
- MSSQL
- SpringBoot
- STS
- Thymeleaf
- Source
- Core Java
- ubuntu
- git
- oracle
- error
- Python
- spring
- Docker
- JavaScript
- myBatis
- 문서
- Spring Boot
- JDBC
- 설정
- Today
- Total
목록hermeswing log (709)
헤르메스 LIFE
CREATE PROC [dbo].[프로시저명] @PARAM1 VARCHAR(10) , @RESULT NVARCHAR(255) OUTPUT -- 결과 AS BEGIN SET NOCOUNT ON DECLARE @VALUE01 VARCHAR(8) DECLARE @VALUE02 INT DECLARE @VALUE03 NVARCHAR(20) BEGIN TRAN BEGIN TRY 프로시저 내용 SELECT @RESULT = 'S' COMMIT END TRY BEGIN CATCH ROLLBACK SELECT @RESULT = ERROR_MESSAGE() END CATCH END BEGIN DECLARE @RESULT NVARCHAR(255) EXEC DBO.PRC_RETURN_SALS_WR_PRC_H2 '1', @RE..
운영서버에 파일을 올리기 위해서 오늘일자의 수정된 파일 목록을 떨구고, 그 파일을 다른 곳에 copy 해서 관리하는 간단한 Source 기준시간으로 부터 변경된 Source파일을 찾는 프로그램 package com.java .text; import java. io.BufferedReader ; import java. io.BufferedWriter ; import java. io.File ; import java. io.FileInputStream ; import java. io.FileOutputStream ; import java. io.FileReader ; import java. io.FileWriter ; import java. io.IOException ; import java. io.Prin..
String create[] = new String[]{"net.driver", "i:", "\\192.168.1.90\test_drive", "pw", "/user:id"} Process oProcess = new ProcessBuilder(create).start(); // 스캐너클래스를 사용해 InputStream을 스캔함 //Scanner s = new Scanner(oProcess.getInputStream(), "UTF-8"); Scanner s = new Scanner(oProcess.getInputStream(), "ms949"); while (s.hasNextLine() == true) { // 표준출력으로 출력 logger.info(s.nextLine()); } 실행결과 더보기 10:0..
자바를 이용한 이미지로 바코드 출력 소스로, 사용자가 원하는 이미지 TYPE과 SIZE를 정의 출력하여, PDF출력이나 엑셀출력시 클래스를 불러와 라벨작업에 활용가능하다. mport java.io.File; import java.io.FileOutputStream; import com.google.zxing.BarcodeFormat; import com.google.zxing.client.j2se.MatrixToImageWriter; import com.google.zxing.common.BitMatrix; //import com.google.zxing.oned.Code39Writer; import com.google.zxing.qrcode.QRCodeWriter; public class Qrcode {..
한때 &#으로 시작하는 이상한 문자열을 가져다 붙여넣기 하라는 글이 있었고, 신기하게 붙여넣기 하면 한글로 변형이 되는 것이 있었다. 다 와 같이 &#으로 시작하는 문자를 html entity 라고 하는데 아래 코드는 이러한 html entity 코드를 변환하는 자바스크립트, 자바 소스이다. 자바스크립트 : 자바 : package foren2.utils.http; public class HTMLEntityDecodeTest { public static String htmlEntityDecode( String s ) { int i = 0, j = 0, pos = 0; StringBuffer sb = new StringBuffer(); while (( i = s.indexOf("&#", pos) ) != -..

출처 : postitforhooney.tistory.com/entry/DBMARIADB-SQL-%EC%98%88%EC%A0%9C%EB%A5%BC-%ED%86%B5%ED%95%9C-JOIN%EC%9D%98-%EC%A2%85%EB%A5%98-%ED%8C%8C%EC%95%85 [DB/MariaDB] SQL 예제를 통한 JOIN의 종류 파악 # DB, JOIN의 종류와 SQL를 통한 JOIN 파악 [MariaDB] - 최근 수정일 : 2017.04.13 - IDE : Spring Tool Suite - OS : OSX Sierra (10.12.3) - DB : MariaDB(Ver 15.1 Distrib 10.1.17-MariaDB) ##1. 배경 DB를 사.. postitforhooney.tistory.com
출처 : Eclipsepedia ( https://wiki.eclipse.org/Eclipse/Installation ) Eclipse/Installation - EclipsepediaInstalling Eclipse is relatively easy, but does involve a few steps and software from at least two different sources. Eclipse is a Java-based application and, as such, requires a Java Runtime Environment or Java Development Kit (JRE or JDK) in order to ruwiki.eclipse.org출처 : Spring Boot ( githu..

원격데스크탑 관리툴 - GNU General Public Licence Version 2. mremoteng.org/ mRemoteNG mremoteng.org/download
1. MSSQL Connection 참조 : hermeslog.tistory.com/501?category=306365 [Python] pymssql 설치 시 오류 - Microsoft Visual C++ 14.0 or greater is required. MSSQL 과 Connection 을 연결하기위해 pymssql 모듈을 설치 하던 중 아래와 같은 오류가 발생하였습니다. pymssql은 Python DB API (PEP-249) 스펙을 따르는 FreeTDS 위에 구현된 파이썬 모듈입니다. (venv) C:\Je.. hermeslog.tistory.com (venv) C:\JetBrains\pythonProject\venv\Scripts>pip install pymssql-2.1.5-cp39-cp39..
1. MySQL Connection (venv) C:\JetBrains\pythonProject\venv\Scripts>pip install mysql-connector-python Collecting mysql-connector-python Downloading mysql_connector_python-8.0.23-py2.py3-none-any.whl (379 kB) |████████████████████████████████| 379 kB 939 kB/s Collecting protobuf>=3.0.0 Downloading protobuf-3.15.3-py2.py3-none-any.whl (173 kB) |████████████████████████████████| 173 kB 6.4 MB/s Col..