翻訳と辞書
Words near each other
・ Data-driven testing
・ Data-flow analysis
・ Data-Fly
・ Data-informed decision-making
・ Data-intensive computing
・ Data-Link Switching
・ Data-oriented parsing
・ Data-structured language
・ Data.gov
・ Data.gov.in
・ Data.gov.uk
・ Data2map
・ Data3
・ Data3-Symantec Racing Team p/b Scody
・ Data8
DataAdapter
・ DataArt
・ Databank format
・ Databank Systems Limited
・ Database
・ Database (journal)
・ Database abstraction layer
・ Database activity monitoring
・ Database administration and automation
・ Database administrator
・ Database and Collections of Information Misappropriation Act
・ Database application
・ Database audit
・ Database caching
・ Database catalog


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

DataAdapter : ウィキペディア英語版
DataAdapter
In ADO.NET, a DataAdapter functions as a bridge between a data source, and a disconnected data class, such as a DataSet. At the simplest level it will specify SQL commands that provide elementary CRUD functionality. At a more advanced level it offers all the functions required in order to create Strongly Typed DataSets, including DataRelations. Data adapters are an integral part of ADO.NET managed providers, which are the set of objects used to communicate between a data source and a dataset. (In addition to adapters, managed providers include connection objects, data reader objects, and command objects.) Adapters are used to exchange data between a data source and a dataset. In many applications, this means reading data from a database into a dataset, and then writing changed data from the dataset back to the database. However, a data adapter can move data between any source and a dataset. For example, there could be an adapter that moves data between a Microsoft Exchange server and a dataset.
Sometimes the data you work with is primarily read-only and you rarely need to make changes to the underlying data source Some situations also call for caching data in memory to minimize the number of database calls for data that does not change. The data adapter makes it easy for you to accomplish these things by helping to manage data in a disconnected mode. The data adapter fills a DataSet object when reading the data and writes in a single batch when persisting changes back to the database. A data adapter contains a reference to the connection object and opens and closes the connection automatically when reading from or writing to the database. Additionally, the data adapter contains command object references for SELECT, INSERT, UPDATE, and DELETE operations on the data. You will have a data adapter defined for each table in a DataSet and it will take care of all communication with the database for you. All you need to do is tell the data adapter when to load from or write to the database.



抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「DataAdapter」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.