CRecordSet中有一个变量m_pDatabase,指向数据库类指针。
(六)操作数据库
1、增加记录
void CSpatialProjView::OnButtonAddprograme()
{
// TODO: Add your control notification handler code here
if(!this->m_pSet->IsOpen())//记录集没有打开,返回
return;
if(!this->m_pSet->CanAppend())//没有设置任何字段的值,返回
return;
this->m_pSet->AddNew();//增加新记录
UpdateData(true); //保存新增加的记录
if(this->m_pSet->CanUpdate())