问题描述
- C#出现8个错误,帮忙改一下,谢谢
- using System.Data.SqlClient;
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}private void button1_Click(object sender EventArgs e) { try { string connectionString=""Server=(local);Integrated Security=SSPI;Database=student""; SqlConnection sqlCnn=new SqlConnection(connectionString); sqlCnn.Open(); MessageBox.Show(""连接成功!""); } catch(SqlException ex) { MessageBox.Show(ex.Message); } }}
}
解决方案
代码在哪里,错误代码的发出来啊
解决方案二:
string connectionString=""Server=(local);Integrated Security=SSPI;Database=student;uid=?;pwd=?"";
SqlConnection sqlCnn=new SqlConnection(connectionString); 全角括号
解决方案三:
8个错误说明你的代码都不能编译。
全角括号是一个错误,别的错误就不知道了。估计你胡乱粘贴了一堆代码,和窗体都对不上。
解决方案四:
SqlConnection sqlCnn=new SqlConnection(connectionString); 这一行报错,不知道怎么改
解决方案五:
string connectionString=""Server=(local);Integrated Security=SSPI;Database=student"";
可能是SqlServer的验证方式没有弄清楚:
windows验证 -- 就是上面的语句;
SQLserver 混合验证-- username + pwd.
时间: 2024-11-02 08:28:59