摘要:
public void createTable() { DataSet ds = new DataSet(); using (DataTable dt = new DataTable("students")) { //创建列 DataColumn dtc = new DataColumn("姓名",typeof(string)); dt.Columns.Add(dtc); dtc = new Da... 阅读全文
posted @ 2010-09-10 15:11
笨笨在成长
阅读(8650)
评论(1)
推荐(1)
2010年9月10日