freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

計(jì)算機(jī)外文翻譯---netframework概述(存儲版)

2025-06-30 17:28上一頁面

下一頁面
  

【正文】 ntral ponents of that acplish this: the DataSet, and the .NET Framework data provider, which is a set of ponents including the Connection, Command, DataReader, and DataAdapter objects. The DataSet is the core ponent of the disconnected architecture of . The DataSet is explicitly designed for data access independent of any data source. As a result it can be used with multiple and differing data sources, used with XML data, or used to manage data local to the application. The DataSet contains a collection of one or more DataTable objects made up of rows and columns of data, as well as primary key, foreign key, constraint, and relation information about the data in the DataTable objects. The other core element of the architecture is the .NET Framework data provider, whose ponents are explicitly designed for data manipulation and fast, forwardonly, readonly access to data. The Connection object provides connectivity to a data source. The Command object enables access to database mands to return data, modify data, run stored procedures, and send or retrieve parameter information. The DataReader provides a highperformance stream of data from the data source. Finally, the DataAdapter provides the bridge between the DataSet object and the data source. The DataAdapter uses Command objects to execute SQL mands at the data source to both load the DataSet with data, and reconcile changes made to the data in the DataSet back to the data source. You can write .NET Framework data providers for any data source. The .NET Framework ships with two .NET Framework data providers: the .NET Framework Data Provider for SQL Server and the .NET Framework Data Provider for OLE DB. The following diagram illustrates the ponents of architecture. Remoting or Marshaling Data between Tiers and Clients The design of the DataSet enables you to easily transport data to clients over the Web using XML Web services, as well as allowing you to marshal data between .NET ponents using .NET Remoting services. You can also remote a strongly typed DataSet in this fashion. .NET Framework Data Providers A .NET Framework data provider is used for connecting to a database, executing mands, and retrieving results. Those results are either processed directly, or placed in an DataSet in order to be exposed to the user in an adhoc manner, bined with data from multiple sources, or remoted between tiers. The .NET Framework data provider is designed to be lightweight, creating a minimal layer between the data source and your code, increasing performance without sacrificing functionality. The .NET Framework includes the .NET Framework Data Provider for SQL Server (for Microsoft SQL Server version or later), the .NET Framework Data Provider for OLE DB, and the .NET Framework Data Provider for ODBC. Connecting to SQL Server Using The .NET Framework Data Provider for SQL Server provides connectivity to Microsoft SQL Server version or later using the SqlConnection object. The .NET Framework Data Provider for SQL Server supports a connection string format that is similar to the OLE DB (ADO) connection string format. For valid string format names and values, see the Property. Closing the Connection It is remended that you always close the Connection when you are finished using it, in order for the connection to be returned to the pool. This can be done using either the Close or Dispose methods of the Connection object. Connections that are not explicitly closed might not be added or returned to the pool. For example, a connection that has gone out of scope but that has not been explicitly closed will only be returned to the connection pool if the maximum pool size has been reached and the connection is still valid. Note Do not call Close or Dispose on a Connection, a DataReader, or any other managed object in the Finalize method of your class. In a finalizer, only release unmanaged resources that your class owns directly. If your class does not own any unmanaged resources, do not include a Finalize method in your class definition. Integrated Security and SQL Server Integrated Security (also known as Trusted Connections) helps to provide protection when connecting to SQL Server as it does not expose a userid and password in the connection string and is the remended method for authenticating a connection. Integrated Security uses the current security identity, or token, of the executing process. For desktop applications, this is, most monly, the identity of the currently logged on user. The security identity for applications can be set to one of several different options. Performing Database Operations and Modifying Data Using a .NET Framework data provider, you can execute stored procedures or data definition language (DDL) statements (for example, CREATE TABLE and ALTER COLUMN) to perform schema manipulation on a database or catalog. These mands do not return rows as a query would, so the Command object provides an ExecuteNonQuery method to process them. In addition to using ExecuteNonQuery to modify schema, you can also use this method to process SQL statements that modify data but that do not return rows, such as INSERT, UPDATE, and DELETE. Although rows are not returned by the ExecuteNonQuery method, input and output parameters and return values can be passed and returned via the Parameters collection of the Command object. Introduction to is more than the next version of Active Server Pages (ASP)。 基類 Control 為此目的提供兩個方法: SaveViewState 和 LoadViewState。但是,與具有 TypeConverter 的那些類型相比,只可序列化的類型不但更慢而且生成大得多的 ViewState。 頁框架將 ViewState 存留到一個字符串變量,將它發(fā)送到客戶端并作為隱藏變量返回??梢苑奖愕匾瞥⑻砑踊蛘咛鎿Q這些方案,這取決于應(yīng)用程序的需要。 還提供性能計(jì)數(shù)器,開發(fā)人員和系統(tǒng)管理員可以監(jiān)視這些性能計(jì)數(shù)器,以測試新的應(yīng)用程序和搜集有關(guān)現(xiàn)有應(yīng)用程序的度量標(biāo)準(zhǔn)。 ? 對于需要使用像 ISAPI 編程接口(隨附于以前的 ASP 版本中)那樣功能強(qiáng)大的 API 的高級開發(fā)人員, 提供了 IHttpHandler 和 IHtt
點(diǎn)擊復(fù)制文檔內(nèi)容
畢業(yè)設(shè)計(jì)相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1