vb.net数据库操作语法

Private Sub Command1_Click()
For i = 0 To 5
Text1(i).Text
= ""
Next i
Adodc1.RecordSource
= "select *  from " & s1 & " order by 编号"
Adodc1.Refresh
 
If Adodc1.Recordset.RecordCount > 0 Then
    Adodc1.Recordset.MoveLast
    Text1(
0).Text = "G" + Format((Val(Right(Trim(Adodc1.Recordset.Fields("编号")), 4)) + 1), "0000")
  
Else
    Text1(
0).Text = "G0001"
 
End If
End Sub
Private Sub Command2_Click()
If Adodc1.Recordset.EOF = False Then
c
= MsgBox("您确认要删除该记录吗?", vbOKCancel, "删除提示信息")
  
If c = vbOK Then
    Adodc1.Recordset.Delete
    Adodc1.RecordSource
= "select * from 人员表"
    Adodc1.Refresh
  
End If
Else
  
MsgBox "当前数据库中没有可删除的数据记录", vbOKOnly, "提示信息"
End If
End Sub
Private Sub Command3_Click()
If Text1(0).Text = "" Or Text1(1).Text = "" Then
  
MsgBox "请选择需要改动的记录信息!", vbOKOnly, "错误提示"
Else
   c
= MsgBox("确定要修改该记录吗?", vbOKCancel, "提示信息")
      
If c = vbOK Then                                   '如果确认修改的话进行修改操作
               If Text1(1).Text = "" Then
                 
MsgBox "姓名不能为空值!", 48, "修改信息提示"
              
Else
                           
'连接所要修改的数据库
                             con.Open "Provider=SQLOLEDB.1;Password=2752;Persist Security Info=True;User ID=sa;Initial Catalog=sample;Data Source=JAMLEEPC"
                           
'开始修改数据库
                            con.Execute ("UPDATE " & s1 & "  SET 姓名='" & Text1(1).Text & "',年龄=" & Text1(2).Text & ",学历='" & Text1(3).Text & "',年级=" & Text1(4).Text & ", 入学时间='" & Text1(5).Text & "'  where 编号='" & Trim(Text1(0)) & "'")
                            
MsgBox "信息修改成功", 64, "修改信息提示"
                            con.Close
             Adodc1.RecordSource
= "select * from 人员表"
             Adodc1.Refresh
              
End If
       
End If
End If
End Sub
Private Sub Command4_Click()
Adodc1.RecordSource
= "select * from 人员表  where 编号='" + Text1(0).Text + "'"
Adodc1.Refresh
If Adodc1.Recordset.RecordCount > 0 Then
  
MsgBox "该信息已存在,信息保存不成功", 64, "保存信息提示"
Else
   cc
= MsgBox("您确定要保存该信息吗?", 33, "信息保存提示")
   
If cc = vbOK Then
       
If Text1(1).Text = "" Or Text1(2).Text = "" Or Text1(3).Text = "" Or Text1(4).Text = "" Or Text1(5).Text = "" Then
          
MsgBox "请确认,人员的姓名、年龄、学历、年级和入学时间不能为空", 48, "保存信息提示"
       
Else
         con.Open
"Provider=SQLOLEDB.1;Password=2752;Persist Security Info=True;User ID=sa;Initial Catalog=sample;Data Source=JAMLEEPC"
         con.Execute (
"insert into 人员表  values('" & Text1(0).Text & "','" & Text1(1).Text & "','" & Text1(2).Text & "','" & Text1(3).Text & "','" & Text1(4).Text & "', '" & Text1(5).Text & "')")
        
MsgBox "信息修改成功", 64, "修改信息提示"
         con.Close
         Adodc1.RecordSource
= "select * from 人员表"
         Adodc1.Refresh
       
End If
    
Else
    
End If
End If
Set DataGrid1.DataSource = Adodc1
End Sub

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值