DB 데이터 형식 맵핑 [ 출처 : https://msdn.microsoft.com/ko-kr/library/ms378878(v=sql.110).aspx ] 알아 두면 좋지 데이터 형식 매핑다음 표에서는 기본 SQL Server, JDBC 및 Java 프로그래밍 언어 데이터 형식 간의 기본 매핑을 나열합니다.SQL Server 형식JDBC 형식(java.sql.Types)Java 언어 형식bigintBIGINTlongbinaryBINARYbyte[]bitBITbooleancharCHARStringdateDATEjava.sql.DatedatetimeTIMESTAMPjava.sql.Timestampdatetime2TIMESTAMPjava.sql.Timestampdatetimeoffset(2)microsoft.sql.Types.DA.. 2015. 7. 7. int, bigint,smallint, and tinyint 사이즈와 범위 [출처 : https://msdn.microsoft.com/en-us/library/ms187745.aspx] int, bigint, smallint, and tinyint (Transact-SQL) Other Versions SQL Server 2012 SQL Server 2008 R2 SQL Server 2008 SQL Server 2005 Applies To: SQL Server 2014, SQL Server 2016 PreviewTopic Status: Some information in this topic is preview and subject to change in future releases. Preview information describes new features or changes .. 2015. 7. 7. [DB] sql SET ANSI_NULLS, SET QUOTED_IDENTIFIER https://technet.microsoft.com/ko-kr/library/ms190356(v=sql.120).aspx https://technet.microsoft.com/ko-kr/library/ms174393(v=sql.120).aspx SET ANSI_NULLS 리를 날릴때 SET ANSI_NULLS on 혹은 SET ANSI_NULLS off 로 사용한다. ---------------------------------------------------------------------------------------------------------------- SET ANSI_NULLS 옵션이 ON인 경우, WHERE column_name = NULL을 사용하는 SELECT 문은 column_na.. 2015. 7. 1. sealed 클래스 출처 [http://nowonbun.tistory.com/103] [http://blog.naver.com/ssm_sebiya/140106406859] [https://msdn.microsoft.com/ko-kr/library/ms173150.aspx] sealed 의 사전적 의미는 a 봉인을 한 이라는 뜻이다. 그러면 sealed class는 무엇일까? class 앞에 sealed 키워드를 쓰면 그 클래스는 더이상 상속이 불가능한 클래스가 된다. 그래서 sealed class 를 상속받으려 하면 에러를 뱉어낸다. class aa 앞에 sealed 를 붙여 class sealed aa 라고 클래스를 생성하고 aa 클래스를 상속받는 bb 클래스르 만들면 에러가 나온다. 하지만 상속 하는 클래스는 seale.. 2015. 6. 12. Object class 의 Empty 체크하기! [출처 ㅣ https://msdn.microsoft.com/ko-kr/library/system.string.isnullorempty(v=vs.110).aspx] public object Result{ get; private set; } Result = mySqlCommand.ExecuteScalar(); // 이 ExecuteScalar 쿼리를 했을때 DB에 저장된 데이터가 없어서 Result 값이 empty 인 상황이었다. 그래서 해결법은 string str = readReq.Result.ToString() if (str.Equals("")) { Debug.Log("MaxEmployeeNumber is not existence"); MaxEmployeeNumber = 0; Debug.Log("MaxE.. 2015. 6. 12. .exe 실행파일을 디버깅하기 [출처 : https://msdn.microsoft.com/ko-kr/library/0bxe8ytt.aspx] 실행 파일을 Visual Studio 솔루션으로 가져오려면 파일 메뉴에서 프로젝트 추가를 가리킨 다음 기존 프로젝트를 클릭합니다. 기존 프로젝트 추가 대화 상자에서 파일 이름 상자 옆의 드롭다운 목록을 클릭하고 모든 프로젝트 파일을 선택합니다. 실행 파일을 찾아 선택합니다. 확인을 클릭합니다. 디버그 메뉴에서 시작과 같은 실행 명령을 선택하여 실행 파일을 시작합니다. 된다! 신기해 2015. 6. 12. 이전 1 ··· 23 24 25 26 27 28 29 다음