Dbdataadapter filling (fill) Dataset

Source: Internet
Author: User

FillThe method supports the following situations:DatasetContains multipleDatatableObject, and the names of these objects are only case-insensitive. In this case,FillPerform a case-sensitive comparison to find the corresponding table. If no matching table exists, create a new one. The following C #CodeThis action is interpreted.

Dataset dataset = new dataset (); dataset. tables. add ("AAA"); dataset. tables. add ("AAA"); adapter. fill (dataset, "AAA"); // fills "AAA", which already exists in the dataset. adapter. fill (dataset, "AAA"); // adds a new table called "AAA ".

 

If you callFillAndDatasetContains only one name, which is case-insensitive.Datatable, UpdateDatatable. In this case, the comparison is case insensitive. The following C # code illustrates this behavior.

Dataset dataset = new dataset (); dataset. tables. add ("AAA"); adapter. fill (dataset, "AAA"); // fills table "AAA" because only one similarly named table is in the dataset

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.