CDataConnection::operator CSession&
傳回包含於 CSession 物件的參考。
operator const CSession&();
備註
這個運算子會傳回包含於 CSession 物件的參考,可讓您透過 CSession 參考所需的 CDataConnection 物件。
範例
如果您有一個函式 (例如下面 func ) 會採用 CSession 參考,您可以使用 CSession& 透過 CDataConnection 物件。
void SessionFunc(const CSession& theSession)
{
XACTTRANSINFO info = {0};
HRESULT hr = theSession.GetTransactionInfo(&info);
wprintf_s(_T("GetTransactionInfo returned %x\n"), hr);
}
CDataConnection dc;
dc.Open(szInit);
SessionFunc(dc);
需求
標題: atldbcli.h