C # nvarchar (max) Operations)

Source: Internet
Author: User

 

Like normal nvarchar operations, note that the length of sqldbtype. nvarchar is set to-1,

new SqlParameter("@text",SqlDbType.NVarChar,-1)
Public bool addmax () {stringbuilder strsql = new stringbuilder (); strsql. append ("insert into tb_maxtest ("); strsql. append ("ID, text) values (@ ID, @ text);"); sqlparameter [] parameters = new sqlparameter [] {New sqlparameter ("@ ID", sqldbtype. varchar, 50), new sqlparameter ("@ text", sqldbtype. nvarchar,-1)}; Parameters [0]. value = "111"; Parameters [1]. value = "when writing stored procedure, if the type of the parameter is nvarchar (max) in. for example, if there is a parameter @ message whose data type is nvarchar (max), it must be written as follows: new sqlparameter (\ "@ message \", sqldbtype. nvarchar,-1) "; int ROW = dbhelpersql. executesql (@ "Server = CNPVG-SQLVM \ Tester; initial catalog = dms_quotation; Pwd = welcome88; uid = sqladmin;", strsql. tostring (), parameters); Return row> 0 ;}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.