InternetTimeout 속성 예제(VC++)
중요
Windows 8 및 Windows Server 2012부터, RDS 서버 구성 요소는 더 이상 Windows 운영 체제에 포함되지 않습니다(자세한 내용은 Windows 8 및 Windows Server 2012 호환성 쿡북 참조). RDS 클라이언트 구성 요소는 이후 버전의 Windows에서 제거될 예정입니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 애플리케이션은 수정하세요. RDS를 사용하는 애플리케이션은 WCF Data Service로 마이그레이션해야 합니다.
이 예제에서는 DataControl 및 DataSpace 개체에 있는 InternetTimeout 속성을 보여 줍니다. 이 경우 InternetTimeout 속성은 DataControl 개체에 표시되고 시간 제한은 20초로 설정됩니다.
// BeginInternetTimeoutCpp
#import "c:\Program Files\Common Files\System\ADO\msado15.dll" \
no_namespace rename("EOF", "EndOfFile")
#import "C:\Program Files\Common Files\System\MSADC\msadco.dll"
#include <ole2.h>
#include <stdio.h>
#include <conio.h>
// Function declarations
inline void TESTHR(HRESULT x) {if FAILED(x) _com_issue_error(x);};
void InternetTimeOutX(void);
void PrintProviderError(_ConnectionPtr pConnection);
void PrintComError(_com_error &e);
//////////////////////////////////////////////////////////
// //
// Main Function //
// //
//////////////////////////////////////////////////////////
void main()
{
if(FAILED(::CoInitialize(NULL)))
return;
InternetTimeOutX();
::CoUninitialize();
}
//////////////////////////////////////////////////////////
// //
// InternetTimeOutX Function //
// //
//////////////////////////////////////////////////////////
void InternetTimeOutX(void)
{
HRESULT hr = S_OK;
// Define ADO object pointers.
// Initialize pointers on define.
// These are in the ADODB:: namespace.
_RecordsetPtr pRst = NULL;
//Define RDS object pointers
RDS::IBindMgrPtr dc ;
try
{
TESTHR(dc.CreateInstance(__uuidof(RDS::DataControl)));
dc->Server = "https://MyServer";
dc->Connect = "Data Source='AuthorDatabase'";
dc->SQL = "SELECT * FROM Authors";
// Wait at least 20 seconds.
dc->InternetTimeout = 20000;
dc->Refresh();
// Use another Recordset as a convenience
pRst = dc->GetRecordset();
while(!(pRst->EndOfFile))
{
printf("%s %s",(LPSTR) (_bstr_t) pRst->Fields->
GetItem("au_fname")->Value,
(LPSTR) (_bstr_t) pRst->Fields->
GetItem("au_lname")->Value);
pRst->MoveNext();
}
pRst->Close();
}
catch (_com_error &e)
{
PrintProviderError(pRst->GetActiveConnection());
PrintComError(e);
}
}
//////////////////////////////////////////////////////////
// //
// PrintProviderError Function //
// //
//////////////////////////////////////////////////////////
void PrintProviderError(_ConnectionPtr pConnection)
{
// Print Provider Errors from Connection object.
// pErr is a record object in the Connection's Error collection.
ErrorPtr pErr = NULL;
if( (pConnection->Errors->Count) > 0)
{
long nCount = pConnection->Errors->Count;
// Collection ranges from 0 to nCount -1.
for(long i = 0; i < nCount; i++)
{
pErr = pConnection->Errors->GetItem(i);
printf("\t Error number: %x\t%s", pErr->Number,
pErr->Description);
}
}
}
//////////////////////////////////////////////////////////
// //
// PrintComError Function //
// //
//////////////////////////////////////////////////////////
void PrintComError(_com_error &e)
{
_bstr_t bstrSource(e.Source());
_bstr_t bstrDescription(e.Description());
// Print Com errors.
printf("Error\n");
printf("\tCode = %08lx\n", e.Error());
printf("\tCode meaning = %s\n", e.ErrorMessage());
printf("\tSource = %s\n", (LPCSTR) bstrSource);
printf("\tDescription = %s\n", (LPCSTR) bstrDescription);
}
// EndInternetTimeoutCpp