CRecordset::Close
Chiude il recordset.
virtual void Close( );
Note
ODBC HSTMT e tutta la memoria il framework allocato per il recordset viene rilasciato. In genere dopo aver chiamato Chiudi, eliminare l'oggetto recordset C++ se è stato allocato con new.
È possibile chiamare nuovamente Apri dopo aver chiamato Chiudi. Ciò consente di riutilizzare l'oggetto recordset. L'alternativa consiste nel chiamare Requery.
Esempio
// 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
Requisiti
Header: afxdb.h