你是使用ADO Data控件吗?
对数据的添加,删除操作需要用到该ADO Data控件的RecordSet对象的AddNew和Delete方法
给你写个简单的例子
完成数据添加 括号内是字段名称
Adodc1.Recordset.AddNew
Adodc1.Recordset("name") = Text1.Text
Adodc1.Recordset("sex") = Text2.Text
Adodc1.Recordset("age") = Text3.Text
Adodc1.Recordset("tel") = Text4.Text
Adodc1.Recordset("qq") = Text5.Text
Adodc1.Recordset("e_mail") = Text6.Text
Adodc1.Recordset.Update
完成数据删除
Adodc1.Recordset.Delete