sqlDataAdapter1.Fill(dataSet11,"UserList")在这句话中,dataSet11是数据集;UserList是表吗?如果是表的话也是不可能的。因为在dataSet11里面没有这个表。
请指教UserList是什么?

解决方案 »

  1.   

    dataSet11 中的一个表名,就是你那条语句干的。呵呵sqlDataAdapter1.Fill(dataSet11,"UserList")这句话是将查询结果的数据放到 dataSet11中的一个表,如果没有这个表就创建一个,名字叫UserList
      

  2.   

    是不是就是所谓的临时表?UserList?
      

  3.   

    Dataset
    就是一个内存的数据库
    它里面可以有几张表
    你可以对里的表进行排序,查询都行
      

  4.   

    "Dear " + username + ",\n\nYour account has been added " +
    "to the SkyShark Airlines application. You can log on to the " +
    "application at http://npandey-d185/skyshark. \n\nYour logon name" +
    " is " + username + " and the password is password. Please change" +
    " your password when you log on. \n\n By logging on to the application," +
    " you agree to abide by the terms and conditions attached in the mail" +
    "\n\n Happy Browsing.\n\n Network Administrator (SkyShark)";在这句话中,\n\n是什么意思啊。