中午去找胡總學習不用預存程序實現傳參防注入的方法

來源:互聯網
上載者:User
 public static void AddPhoto(string flname, byte[] fileData, int newhigh, int newwith)
    {
        string sql = "insert into image(name,image) values (@name,@img)";
        string strconn = System.Configuration.ConfigurationManager.ConnectionStrings["newsConnectionString"].ToString();
        SqlConnection sqlConn = new SqlConnection(strconn);
        SqlCommand sqlComm = new SqlCommand(sql, sqlConn);
        sqlComm.Parameters.Add("@name", SqlDbType.VarChar);//添加參數
        sqlComm.Parameters["@name"].Value = flname;//為參數賦值
        sqlComm.Parameters.Add("@img", SqlDbType.Image);//添加參數
        sqlComm.Parameters["@img"].Value = ResizeImageFile(fileData, newhigh, newwith);//為參數賦值

        sqlConn.Open();
        sqlComm.ExecuteNonQuery();
        sqlConn.Close();
    
    
    
    }

這是胡總給的代碼,沒有用到預存程序,但是有一點,不能當作基類使用.
總不能進行一次資料庫操作就要加個基類吧.
主要就是參數問題,我第一次接觸parameters函數,想的方法都不能實現可以進行任意資料庫的操作.
我想寫個能防注入的基類,並可以輕鬆的執行一句SQL語句.

今天上機課,老師給的任務居然是用下載工具隨便下點東西.學習訊雷的使用~~~~~太搞笑了~~~~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.