using System; using System.Collections.Generic; 10
usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usin...
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace WindowsFormsApplication5
{
public partial class Form5 : Form
{
public Form5()
{
InitializeComponent();
}
SqlConnection conn;
private void Form5_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
conn = new SqlConnection("server=.;database=db_15;uid=sa;pwd=");
SqlCommand cmd = new SqlCommand("select*from tb_command", conn);
SqlDataAdapter sda = new SqlDataAdater();
sda.SelectCommand = cmd;
DataSet ds = new DataSet();
sda.Fill(ds, "cs");
dataGridView1.DataSourse = ds.Tables[0];
}
}
}
请教各位大侠,上一段程序中,我已经调用了using System.Data.SqlClient;为什么 SqlDataAdapter sda = new SqlDataAdater();和SqlCommand两个地方都显示缺少using指令或程序集引用 展开
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace WindowsFormsApplication5
{
public partial class Form5 : Form
{
public Form5()
{
InitializeComponent();
}
SqlConnection conn;
private void Form5_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
conn = new SqlConnection("server=.;database=db_15;uid=sa;pwd=");
SqlCommand cmd = new SqlCommand("select*from tb_command", conn);
SqlDataAdapter sda = new SqlDataAdater();
sda.SelectCommand = cmd;
DataSet ds = new DataSet();
sda.Fill(ds, "cs");
dataGridView1.DataSourse = ds.Tables[0];
}
}
}
请教各位大侠,上一段程序中,我已经调用了using System.Data.SqlClient;为什么 SqlDataAdapter sda = new SqlDataAdater();和SqlCommand两个地方都显示缺少using指令或程序集引用 展开
1个回答
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
就是引用了以上四个名称空间。
引用的这几个名称空间都是.NET框架中的基础类库,用于实现一些基本的类。
using System.Collections.Generic;
using System.Linq;
using System.Text;
就是引用了以上四个名称空间。
引用的这几个名称空间都是.NET框架中的基础类库,用于实现一些基本的类。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
广州奥泰斯工业自动化控制设备有限公司_
2023-03-29 广告
2023-03-29 广告
日本OPTEX FA光电传感器产品已在中国大陆销售了近30年,产品的高性价比已被广大客户所认可。为更好的服务广大客户,日本株式会社(OPTEX FA)于2013年成立广州奥泰斯工业自动化控制设备有限公司,作为OPTEX FA中国区总部。日本...
点击进入详情页
本回答由广州奥泰斯工业自动化控制设备有限公司_提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询