CDataConnection::operator CSession&
返回对包含的 CSession 对象。
operator const CSession&();
备注
此运算符返回对包含的 CSession 对象,它使您可以 CSession 引用所需的 CDataConnection 对象。
示例
如果有一个函数 (例如下面) 采用引用,可以使用 CSession& 通过对象。
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);
要求
Header: atldbcli.h