strsql="SELECT * FROM YourTableName WHERE YourCon"
rs.open strsql,cn,1,3
strsql="INSERT INTO YourTableName () VALUES ()"
cn.execute strsql
strsql="UPDATE YourTableName SET ...... WHERE YourCon"
cn.execute strsql
strsql="DELETE FROM YourTableName WHERE YourCon"
cn.execute strsql具体看看sql语法