如何通过 windows 应用程序中的 VB.Net 将数据插入 SQL 服务器数据库

How to insert data into SQL Server database by VB.Net in windows application

如何通过 Windows 应用程序中的 VB.Net 将数据插入 SQL 服务器数据库。我正在使用 Windows 表格申请。
在 运行 时间它给出异常:

con.open() the connection is not established.

代码:

imports system.data
imports system.data.sqlclient

on button_click(){

    Dim cn as SqlConnection=new SqlConnection("Data Source=.\sqlexpress;InitialCatlog=shri;Security=True;User id=---;password=system")
    cn.close()
    cn.Open()
    Dim cmd as SqlCommand=new SqlCommand("insert into tbl1 values('"&textbox1.Text&"','"textbox2.Text"')",cn)
    cmd.executeNonQuery()
    messageBox.Text="record Inserted"
    cn.close()
    ...
}

其中 tbl1 是数据库中的 table。

您的连接字符串中有拼写错误。

  • 将“Security”替换为“Integrated Security”。
  • 此外,“Initial Catalog”中应该有一个space。

您忘记在这一行中使用“& &”

Dim cmd as SqlCommand=new SqlCommand("insert into tbl1 values('"& textbox1.Text &"','"& textbox2.Text &"')",cn)

或使用此 link

试试这个(标准连接):

Password=system;Persist Security Info=True;User ID=---;Initial Catalog=shri;Data Source=.\sqlexpress

如果您希望将密码保存在连接字符串中以供将来使用连接对象集的连接字符串Persist Security Info=True;;其他方式设置 Persist Security Info=False;

实际上当你设置 Persist Security Info=False;;您的连接对象的连接字符串 属性 的密码将被隐藏。

或者如果您使用受信任的连接,请使用:

Integrated Security=SSPI;Initial Catalog=shri;Data Source=.\sqlexpress

那么;建议将 sqlcommand 更改为 运行 用于插入的存储过程。但是 insert into 更好的用法是这样的:

insert into <table Name> (<List of Fileds>) Values (<List of Values>)

并注意在命令字符串中添加 (') 的值类型。