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指令或程序集引用
展开
 我来答
棕檬醉bu
推荐于2017-11-25 · TA获得超过137个赞
知道小有建树答主
回答量:147
采纳率:100%
帮助的人:63.8万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

就是引用了以上四个名称空间
引用的这几个名称空间都是.NET框架中的基础类库,用于实现一些基本的类。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
广州奥泰斯工业自动化控制设备有限公司_
2023-03-29 广告
日本OPTEX FA光电传感器产品已在中国大陆销售了近30年,产品的高性价比已被广大客户所认可。为更好的服务广大客户,日本株式会社(OPTEX FA)于2013年成立广州奥泰斯工业自动化控制设备有限公司,作为OPTEX FA中国区总部。日本... 点击进入详情页
本回答由广州奥泰斯工业自动化控制设备有限公司_提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式