共用方式為


CTable::Open

開啟資料表。

HRESULT Open(
   const CSession& session,
   LPCWSTR wszTableName,
   DBPROPSET* pPropSet = NULL,
   ULONG ulPropSets = 0
) throw ( );
HRESULT Open(
   const CSession& session,
   LPCSTR szTableName,
   DBPROPSET* pPropSet = NULL,
   ULONG ulPropSets = 0
) throw ( );
HRESULT Open(
   const CSession& session,
   DBID& dbid,
   DBPROPSET* pPropSet = NULL,
   ULONG ulPropSets = 0
) throw ( );

參數

  • session
    [in]開啟資料表時工作階段。

  • wszTableName
    [in]若要開啟,資料表的名稱傳遞做為 Unicode 字串。

  • szTableName
    [in]若要開啟,資料表的名稱傳遞做為 ANSI 字串。

  • dbid
    [in] DBID 要開啟的資料表。

  • pPropSet
    [in]變數的指標陣列, DBPROPSET 結構,其中包含屬性和設定值。 請參閱的屬性集和屬性群組OLE DB 程式設計人員參考 》 在Windows SDK。 NULL 預設值會指定任何屬性。

  • ulPropSets
    [in]數目 DBPROPSET 結構傳入的 pPropSet 引數。

傳回值

一種標準HRESULT

備註

如需詳細資訊,請參閱 IOpenRowset::OpenRowsetOLE DB 程式設計人員參考

需求

標頭: atldbcli.h

請參閱

參考

CTable 類別