示例#1
-1
    private DataSet SetDs()
    {
        string selectCommand = "select id,account,name from judge_user";
        string conString = ConfigurationManager.AppSettings["SqlConnStr"];

        MySqlHelper mysqlHelper = new MySqlHelper(SetOfBookType.NuoHeTest);



        mysqlHelper.Fill(ds, CommandType.Text, selectCommand);

        return ds;
    }