c# 数据库输出到文本 格式如下 姓名丨年龄丨联系方式; 姓名丨年龄丨联系方式; end 语句怎么写啊
2个回答
展开全部
OleDbDataAdapter da = new OleDbDataAdapter("select 学号、姓名、性别、年龄 from 学生表", new OleDbConnection("连接串"));
DataSet ds = new DataSet();
da.Fill(ds,"学生表");
//添加索引、即查询第几条(全局变量),条目转换只需加减index即可
int index = new int();
textbox1.text = ds.Tables["学生表"].Rows[index]["学号"].ToString();
textbox2.text = ds.Tables["学生表"].Rows[index]["姓名"].ToString();
textbox3.text = ds.Tables["学生表"].Rows[index]["性别"].ToString();
textbox4.text = ds.Tables["学生表"].Rows[index]["年龄"].ToString();
DataSet ds = new DataSet();
da.Fill(ds,"学生表");
//添加索引、即查询第几条(全局变量),条目转换只需加减index即可
int index = new int();
textbox1.text = ds.Tables["学生表"].Rows[index]["学号"].ToString();
textbox2.text = ds.Tables["学生表"].Rows[index]["姓名"].ToString();
textbox3.text = ds.Tables["学生表"].Rows[index]["性别"].ToString();
textbox4.text = ds.Tables["学生表"].Rows[index]["年龄"].ToString();
2015-09-11
展开全部
C#里没有end。大括号结束 就是end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询