Asp.net access to access database overflow error

Source: Internet
Author: User

Write the following method to return the number of rows affected by the data operation: CopyCode The Code is as follows: Private int getreturnvalue (string SSTR, string conn ){
Oledbconnection odbconn = accesshelp (conn );
Oledbcommand odbcmd = new oledbcommand (SSTR, odbconn );
Return odbcmd. executenonquery ();
}

Use the following method to call this class:Copy codeThe Code is as follows: public int wsbm (string [] Str ){
Stringbuilder sb = new stringbuilder ();
SB. append ("insert into"). append ("wsbm (ZY, studentname, parentname )");
SB. append ("values (");
SB. append ("'" + STR [0] + "', '" + STR [1] + "', '" + STR [2] + "'");
SB. append (")");
Return getreturnvalue (sb. tostring (), "odbconn ");
}

Send data in this event:Copy codeThe Code is as follows: protected void bttj_click (Object sender, eventargs e ){
String [] SSTR = new string [] {
This. ddlzy. selecteditem. Text,
This. tbname. Text,
This. tbbb. Text,
};
If (Ad. wsbm (SSTR)> 0 ){
Response. Write ("<SCRIPT> alert ('inserted successfully! ') </SCRIPT> ");
}
}

The execution result is as follows. Why ???

How can this benefit be solved ?????

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.