VS. NET (C #) Database Interface C # DataTableMaooing class usage, vs.net

Source: Internet
Author: User

VS. NET (C #) Database Interface C # DataTableMaooing class usage, vs.net

We can see that the default Table is Table, Table1, Table2, and so on. It is unfriendly to the customer. For example:

We can use the DataTableMaooing class to perform a friendly name ing between the DataTable object and the DataColumn object!

The code for the above effect is as follows:

Public DataSet GetDataSet (string v_strConn) {SqlConnection conn = new SqlConnection (v_strConn); string strSql = "Select * from tbClass; Select * from tbBoard "; // create the SqlDataAdapter object SqlDataAdapter da = new SqlDataAdapter (strSql, conn); DataSet dt = new DataSet (); DataTableMapping dtmClass = da. tableMappings. add ("Table", "Forum category Table"); dtmClass. columnMappings. add ("ClassID", "category ID"); dtmClass. columnMappings. add ("ClassName", "category name"); DataTableMapping dtmBoard = da. tableMappings. add ("Table1", "forum table"); dtmBoard. columnMappings. add ("BoardID", "Forum ID"); dtmBoard. columnMappings. add ("BoardName", "Forum name"); dtmBoard. columnMappings. add ("BoardClassID", "category ID"); da. fill (dt); return dt ;}

Related Article

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.