共用方式為


CRecordset::Close

關閉資料錄集。

virtual void Close( );

備註

指定資料錄集配置的架構解除配置 ODBC HSTMT 和任何記憶體。 通常在呼叫後,您 關閉刪除 C++ 資料錄集物件 (如果配置使用 new

您可以在呼叫之後再呼叫 關閉開啟 。 這可讓您重複使用資料錄集物件。 這個選項是呼叫 Requery

範例

// Construct a snapshot object
CCustomer rsCustSet(NULL);

if(!rsCustSet.Open())
   return;

// Use the snapshot ...

// Close the snapshot
rsCustSet.Close();

// Destructor is called when the function exits

需求

Header: afxdb.h

請參閱

參考

CRecordset 類別

階層架構圖

CRecordset::CRecordset

CRecordset::Open

CRecordset::Requery