開始Mysql(使用者登陸)5

來源:互聯網
上載者:User

前面的通用類寫好了 下面通過不同的方式調用測試一下

代碼        MysqlHelp mh = new MysqlHelp();
        //清空資料
        mh.Runsql("delete from t_user");
        //sql的方式添加
        MySqlParameter[] parms ={ 
        new MySqlParameter("?uid",MySqlDbType.VarChar,50),
        new MySqlParameter("?pwd",MySqlDbType.VarChar,50),
        new MySqlParameter("?name",MySqlDbType.VarChar,20)};
        parms[0].Value = "admin11";
        parms[1].Value = "123";
        parms[2].Value = "bb11";
        mh.Runsql("insert into T_user(U_uid,U_pwd,U_name) values (?uid,?pwd,?name)", parms);
     
        //proc方式添加
        MySqlParameter[] pparms ={ 
            new MySqlParameter("?uid",MySqlDbType.VarChar,50),
            new MySqlParameter("?pwd",MySqlDbType.VarChar,20),
            new MySqlParameter("?name",MySqlDbType.VarChar,20)
        };
        pparms[0].Value = "admin22";
        pparms[1].Value = "123";
        pparms[2].Value = "bb22";
        mh.RunPrc("proc_add", pparms);

        //使用者登陸
        MySqlParameter[] parss ={ 
            new MySqlParameter("?uid",MySqlDbType.VarChar,50),
            new MySqlParameter("?pwd",MySqlDbType.VarChar,20),
            new MySqlParameter("?back",MySqlDbType.Int16)
        };
        parss[2].Direction = ParameterDirection.Output;
        parss[0].Value = "admin11";
        parss[1].Value = "123";
        mh.RunPrc("proc_login", parss);
        string back = parss[2].Value.ToString();//輸出值 這裡輸出的是1 登陸成功
        
        //獲得使用者了列表
        this.GridView1.DataSource = mh.GetDataByPrc("Getalluser");
        this.GridView1.DataBind();

這裡注意一下和MSSQL不一樣的地方用?代替了@ 當然不同的串連驅動寫法可能會不一樣

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.