加入生成SQL语句的语句-CS架构 PPT

时间:2024-05-15 15:57:08
【文件属性】:

文件名称:加入生成SQL语句的语句-CS架构 PPT

文件大小:169KB

文件格式:PPT

更新时间:2024-05-15 15:57:08

CS架构

加入生成SQL语句的语句: 在LoadData中实例化oleDbCommndBuilder后调用下列语句以生成带参数的更新数据库的SQL语句。 oleDbCommandBuilder.GetDeleteCommand(); oleDbCommandBuilder.GetUpdateCommand(); oleDbCommandBuilder.GetInsertCommand(); 由于LoadData中先使用oleDbDataAdapter加载了students表,然后同样使用它加载classes表,所以如没有上述语句,则在update时,oleDbCommandBuilder. DataAdapter指向的oleDataAdapter的SelectCommand属性的CommandText为Select * from classes,所以将生成对classes的更新语句。 而上述语句生成了关于students的SQL语句,在update时发现oleDbCommandBuilder中已存在这些语句,就不会再生成关于classes的更新语句。


网友评论