数据库连接-C#出现8个错误,帮忙改一下,谢谢

问题描述

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

数据库连接-C#出现8个错误,帮忙改一下,谢谢的相关文章

语句-下面的错误怎么改啊,请大家教教我

问题描述 下面的错误怎么改啊,请大家教教我 void SelectMin(MyHuffmanNode MYN[ML]){ int min1min2; min1=min2=0; int i; for(i=0;i<2*ML-1;i++) { if(MYN[i].weight<MYN[min1].weight && MYN[i].father=-1) min1=i; } min2=min1+1; for(i=0;i<2*ML-1;i++) { if(MYN[i].weight&

编程-是个C++打字游戏代码,新手,有很多错误,帮忙改下,谢谢,急用

问题描述 是个C++打字游戏代码,新手,有很多错误,帮忙改下,谢谢,急用 #include graphics.h #include conio.h #include time.h// 欢迎界面 #include iostream #include thread using namespace std; void welcome() { // 输出屏幕提示 cleardevice(); setcolor(YELLOW); setfont(50, 0, "黑体"); outtextxy(1

from错误求帮忙改下啊

问题描述 from错误求帮忙改下啊 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.OleDb; namespace 专科医院门诊系统_眼科_

c-求助C语言(请务必使用C)帮忙改一下。谢谢!

问题描述 求助C语言(请务必使用C)帮忙改一下.谢谢! #include #include #include #define SIZE 50 //初始容量 #define T 10 //容量增量 //二叉树数据结构 typedef struct Bitree { char data; struct Bitree *lchild,*rchild;//左右孩子指针 struct Bitree *father;//父结点指针 } tree; //栈结构 typedef struct Stack { c

c++-求大神帮忙改一下,改了好多次了

问题描述 求大神帮忙改一下,改了好多次了 改了两天了,还是没改好,不知怎么改才好,错的地方有注释 #include #include #include using namespace std; #define PI 3.1415 class Shape { public: virtual double area()=0; virtual double volume()=0;//11 18 C:UsersAdministratorDesktop未.cpp [Note] virtual double

哪位高手帮忙改下代码

问题描述 我用的是JSP+MSSQL2000但是不知道哪里错了,总是运行不了.帮忙改下请加我QQ:805013034大家帮忙啊~明天交论文~哎~ 解决方案 解决方案二:你要把代码发出来啊.解决方案三:UP你没有问题,让人怎么回答.解决方案四:明天交论文,今天才测试,没戏了.解决方案五:运行不起来,那也总的有个错,没错误谁能帮你看的了,问题想描述好,人家才知道怎么帮你看罗解决方案六:麻烦帮忙宣传下,代做毕业设计,收费低廉...QQ:16403200解决方案七:贴你的代码.....解决方案八:...

php我做的登陆页面,账户密码明明没错,但总显示错误,帮忙看一下谢谢!

问题描述 php我做的登陆页面,账户密码明明没错,但总显示错误,帮忙看一下谢谢! $_login=array(); if(isset($_POST['submit'])){ $_login['username']=_check_username($_POST['zh'],2,20); $_login['password']=_check_password($_POST['mm'],6,18); if(_fetch_array("SELECT * FROM userinfor WHERE user

java 环境变量设置-错误: 程序包net.mindview不存在?能否通过设置环境变量来解决?请各位帮忙分析,谢谢

问题描述 错误: 程序包net.mindview不存在?能否通过设置环境变量来解决?请各位帮忙分析,谢谢 //: initialization/Flower.java // Calling constructors with "this" import static net.mindview.util.Print.*; public class Flower { int petalCount = 0; String s = "initial value"; Flow

c++-求大神!关于IO 输出运算符重载 这是什么错误 怎么改?

问题描述 求大神!关于IO 输出运算符重载 这是什么错误 怎么改? #include"iostream" #include"fstream" #include"string" using namespace std; class coStu { protected: string name,num; double score; public: coStu(string na,string nu,double s): name(na),num(nu