CDaoRecordView::OnGetRecordset

Returns a pointer to the CDaoRecordset-derived object associated with the record view.

virtual CDaoRecordset* OnGetRecordset( ) = 0;

Return Value

A pointer to a CDaoRecordset-derived object if the object was successfully created; otherwise a NULL pointer.

Remarks

You must override this member function to construct or obtain a recordset object and return a pointer to it. If you declare your record view class with ClassWizard, the wizard writes a default override for you. ClassWizard's default implementation returns the recordset pointer stored in the record view if one exists. If not, it constructs a recordset object of the type you specified with ClassWizard and calls its Open member function to open the table or run the query, and then returns a pointer to the object.

For more information and examples, see the article Record Views: Using a Record View.

Requirements

Header: afxdao.h

See Also

Reference

CDaoRecordView Class

Hierarchy Chart

CDaoRecordset Class

CDaoRecordset::Open