전체 글
-
[단축키] Visual Studio 2008 and Visual Studio 2010..Programming 2010. 6. 14. 10:02
visual studio 2008 http://www.microsoft.com/downloads/details.aspx?familyid=e5f902a8-5bb5-4cc6-907e-472809749973&displaylang=en http://www.microsoft.com/downloads/details.aspx?familyid=4411bbfc-0e3c-42b3-bd05-af1d292c986f&displaylang=en visual studio 2010 http://www.microsoft.com/downloads/details.aspx?FamilyID=92CED922-D505-457A-8C9C-84036160639F&displayLang=en
-
리눅스 소켓 프로그래밍(Fork() 사용)Programming/C / C++ 2010. 5. 18. 18:46
리눅스에서 사용하는 소켓 프로그래밍 관련된 내용입니다. 출처 : 교수님.. ㅋ #include #include #include #include #include #include #define BUFSZ 512 typedef struct _msg{ long msg_type; char msg_text[BUFSZ]; } msg_t; int main(int argc, char* argv[]) { pid_t pid; int len, qid; msg_t pmsg; key_t key; if(argc != 2) { printf("Usage : %s msqkey", argv[0]); exit(EXIT_FAILURE); } key = atoi(argv[1]); if((qid = msgget(key, IPC_CREAT | 0..
-
[암호화] C#으로 구현된 DES 알고리즘사용Programming/암호학 2010. 5. 17. 15:22
펌: http://www.codeproject.com/KB/cs/NET_Encrypt_Decrypt.aspx C#으로 구현된 DES 알고리즘에 대해서 찾다가.. Code project에 구현되어있는 내용을 가져왔다. Console.ReadLine()을 통해서 암호화할 문자를 가져와 Encrypt에서 암호화를 하고 Decrypt에서 복호화를 진행한다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; using System.IO; namespace EncryptAndDecrypt { class Program { static byte[] by..
-
[C#] 데이터베이스에 있는 데이터를 MSChart에 표현하기Programming/C# 2010. 5. 9. 21:46
chart1.ChartAreas["Default"].Area3DStyle.Enable3D = true; chart1.ChartAreas["Default"].Area3DStyle.Rotation = 1; chart1.ChartAreas["Default"].Area3DStyle.Inclination = 1; chart1.ChartAreas["Default"].Area3DStyle.WallWidth = 1; chart1.ChartAreas["Default"].Area3DStyle.IsRightAngleAxes = false; chart1.ChartAreas["Default"].Area3DStyle.LightStyle = LightStyle.Realistic; chart1.ChartAreas["Default"]..
-
[T-SQL] Trigger에 대한 이해..Database 2010. 5. 8. 17:25
트리거란? 특정 이벤트시 자동 동작되는 특수한 형태의 저장 프로시저.. 트리거의 종류에는 DDL 트리거와 DML 트리거로 구분할 수 있다. DML 트리거는 INSERT, UPDATE, DELETE에 의해서 데이터 변경 작업이 일어날 때 동작하는 트리거이고, DDL트리거의는 DDL문에 의해서 동작하는 트리거로 AFTER 트리거와 INTEAD OF 트리거로 나뉜다. 아래의 경우에는 DML 트리거이다. USE master IF DB_ID('TESTDB') IS NOT NULL DROP DATABASE TESTDB GO CREATE DATABASE TESTDB USE TESTDB CREATE TABLE TEST10( ID INT, NAME CHAR(30) ) CREATE TABLE TEST20( ID INT, ..
-
[SQLServer] 문자값을 테이블에 저장해야되는데 숫자로 값을 잘못 저장했을 경우Database 2010. 4. 30. 01:10
if object_id('Poc_Data_GroupInsert') is not null drop proc Poc_Data_GroupInsert go create proc Poc_Data_GroupInsert @Group_num int, @TimeCount char(5) as insert into TempTable values (@Group_num, @TimeCount) if ((select 집계간격 from TempTable where Local_no = @Group_num) = '*' ) update TempTable set 집계간격 = '"'+@TimeCount+'"' where Local_no = @Group_num 데이터베이스에서 값을 입력하였는데 원하는 값이 들어가는 것이 아니라 엉뚱한 문자가 ..