본문 바로가기

반응형

공부

(316)

VB .NET 에서 mysql OLE DB 사용하기 http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=1288&lngWId=10 Terms of Agreement: By using this article, you agree to the following terms... 1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge. 2) You MAY NOT redistribute this article (for example to a ..
mysql에 데이터를 넣고 읽는 속도 컴퓨터 : 펜4 2.6G HT 512M Data량 : 약 100만건 174M O/S : WindowsXp Pro sp2 mysql : 4.0.18-max-nt php : 4.3.7 mysql 콘솔이용 Insert : 4분 33초 Select : 3분 05초 ( 단 출력은 NUL 로 빼버렸음 ) php 이용 - 정말 놀라운 결과 select 해서 fetch만 시킴 while ( $res = mysql_fetch_row($qr) ) $cnt++; Select : 13초 역시 IO 가 일어 나는것과 일어 나지 않는게 많은 영향을 미치는구나 ;;; ( mysql 콘솔 이용했을때 NUL 만들어서 IO 가 일어 나는것일까? ) Data 내용 ( 개역성경 바이블을 계속 카피 페이스트로 만들어준것임 ) INSERT I..
[XML] 웹페이지에서 XML 소스 가지고 쉽게 보여주기 으하~ 신기하디 -_-b
strtok 직접 구현 #include "stdio.h" #include char * strtokex( char* str , char* deli ) { static char* source = NULL; static int str_size; static int source_count; int deli_count = 0; char* start_posion = NULL; int temp_count = 0; char delimeter[10] = { 0, }; // str 이 null 이 아니면 새로운 문자열이 들어 왔으므로 // 새 문자열에 대한 것으로 교체 해 준다. if ( str != NULL ) { source = str; str_size = strlen(str); source_count = 0; } // 리턴 되어야할 문자열..
[MFC] 윈도우 항상 최상위에 존재하게 하기 ::SetWindowPos(GetSafeHwnd(), HWND_TOPMOST , 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
[PL] 프로그램언어론 1학기 노트정리 캬햐햐~ -_- 적당히 -_- 안나올만한것은 아예 제외 -_-/~
[Win32/MFC] 특정 윈도우에 메세지 또는 키보드 입력 보내기 http://www.devpia.com/forum/BoardView.aspx?no=464809&page=1&Tpage=13&forumname=vc_qa&stype=&ctType=&answer=&KeyR=title&KeyC=
[Win32/MFC] 키보드 후킹.... ======================================================================== void CInstallhookDlg::OnOk() { static HINSTANCE hinstDLL; typedef BOOL (CALLBACK *inshook)(HWND _hTargetWnd); inshook instkbhook; hinstDLL = LoadLibrary((LPCTSTR) "hodll.dll"); instkbhook = (inshook)GetProcAddress(hinstDLL, "installhook"); instkbhook(m_hWnd); //ShowWindow(SW_MINIMIZE); } ====================================..

반응형