DataGridView的增加,修改,删除命令指定SQL语句
'保存数据
Private Sub Save()
Try
If MsgBox("确定要保存所修改的数据吗?", MsgBoxStyle.Question Or MsgBoxStyle.DefaultButton2 Or MsgBoxStyle.YesNo, "系统提示") = MsgBoxResult.Yes Then
GridView.Rows(0).Cells("spbm").Selected = True
Dim gCummand As New SqlClient.SqlCommandBuilder(gDataAdapter)
With gDataAdapter
Dim parameterU As SqlClient.SqlParameter
'重新指定修改的SQL命令
.UpdateCommand = New SqlClient.SqlCommand("P_SetSJCXinfo", eCMyData.CreateConnection())
.UpdateCommand.CommandType = CommandType.StoredProcedure
parameterU = .UpdateCommand.Parameters.Add("@v_type", SqlDbType.Char, 2)
parameterU.Value = "20"
parameterU = .UpdateCommand.Parameters.Add("@v_sjbh", SqlDbType.Char, 10)
相关文档:
开放性 SQL Server
只能在Windows 上运行,没有丝毫的开放性,操作系统的系统的稳定对数据库是十分重要的。Windows9X系列产品是偏重于桌面应用,NT server只适合中小型企业。而且Windows平台的可靠性,安全性和伸缩性是非常有限的。它不象Unix那样久经考验,尤其是在处理大数据量的关键业务时。
Oracle
......
use test
go
if exists table student is not null
else
drop table student
go
create table database_name.schema_name.table_name
(属性1 字符类型 约束,
属性2 字符类型 约束....
)
go
insert into table_name values ('属性1’,‘属性2’,......)
--插 ......
SQL备份与还原经典文档
======================================================================
SQL备份
======================================================================
----------------------------------------------------------------------
1、SQL数据库恢复模型
------------------------------ ......