Ado net ion a nutshell

735 90 0
Ado net ion a nutshell

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] • • • • • • Table of Contents Index Reviews Examples Reader Reviews Errata ADO.NET in a Nutshell By Bill Hamilton, Matthew MacDonald Publisher: O'Reilly Date : April 2003 Published ISBN: 0-596-00361-7 Pages: 620 ADO.NET in a Nutshell is the most complete and concise source of ADO.NET information available Besides being a valuable reference, this book covers a variety of issues that programmers face when developing web applications or web services that rely on database access Most examples use Microsoft's C# language The book's CD includes an addin to integrate the reference with Visual Studio NET help files [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] • • • • • • Table of Contents Index Reviews Examples Reader Reviews Errata ADO.NET in a Nutshell By Bill Hamilton, Matthew MacDonald Publisher: O'Reilly Date : April 2003 Published ISBN: 0-596-00361-7 Pages: 620 Copyright Preface Audience Contents of This Book What's on the CD-ROM Conventions Used in This Book Comments and Questions Acknowledgments Part I: ADO.NET Tutorial Chapter Introduction Section 1.1 ADO.NET Data Providers Section 1.2 Connected and Disconnected Data Chapter .NET Data Providers Section 2.1 Data Providers Section 2.2 Selecting a Data Provider Section 2.3 Creating a Custom Data Provider Chapter Connections Section 3.1 Connection Object Overview Section 3.2 The Connection String Section 3.3 Opening and Closing Connections This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com Section 3.4 Connection Pooling Chapter Commands Section 4.1 Command Object Overview Section 4.2 Creating and Executing a Command Section 4.3 Parameter Object Overview Section 4.4 Parameterized Commands Section 4.5 Commands with Stored Procedures Section 4.6 Commands and Data Definition Language (DDL) Chapter DataReaders Section 5.1 DataReader Object Overview Section 5.2 Performing a Query with a DataReader Section 5.3 Stored Procedures with the DataReader Section 5.4 DataReaders and Schema Information Chapter DataSets Section 6.1 Creating an Untyped DataSet Section 6.2 Working with Tables in the DataSet Section 6.3 Adding and Removing Relations Section 6.4 Adding Custom Information Section 6.5 Cloning the Schema Section 6.6 Copying the DataSet Section 6.7 Merging Two DataSets Section 6.8 Removing All Data Section 6.9 Resetting the DataSet Section 6.10 Committing and Discarding Changes Chapter DataTables Section 7.1 Creating a DataTable Section 7.2 Working with Columns Section 7.3 Constraints Section 7.4 Primary Key Section 7.5 Rows Section 7.6 Loading Data Section 7.7 Committing and Discarding Changes Section 7.8 Cloning the Schema of the Table Section 7.9 Copying the Table Section 7.10 Selecting a Subset of Rows Section 7.11 Performing Aggregate Calculations Section 7.12 Removing All Data Section 7.13 Resetting the Table Section 7.14 Identifying Errors in the Table Section 7.15 DataTable Events Chapter DataColumns Section 8.1 Creating DataColumns Section 8.2 Creating AutoIncrement Columns Section 8.3 Creating Expression Columns Section 8.4 Handling Null Values Section 8.5 Mapping NET Data Provider Types to NET Framework Types Chapter DataRows This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com Section 9.1 Section 9.2 Section 9.3 Section 9.4 Section 9.5 Section 9.6 Section 9.7 Section 9.8 Creating a DataRow Updating Rows Deleting Rows Using Row State Information Using Row Version Information Accepting or Rejecting Changes to Rows Navigating Parent and Child Rows Using Row Error Information Chapter 10 Constraints Section 10.1 Constraint Object Overview Section 10.2 The UniqueConstraint Section 10.3 The ForeignKeyConstraint Chapter 11 DataRelations Section 11.1 DataRelation Object Overview Section 11.2 Navigating Relational Data Chapter 12 DataViews and Data Binding Section 12.1 The DataView and DataViewManager Section 12.2 Sorting and Filtering Section 12.3 Accessing Data Through a DataView Section 12.4 Windows Data Binding Section 12.5 ASP.NET Data Binding Chapter 13 Strongly Typed DataSets Section 13.1 Creating a Strongly Typed DataSet Section 13.2 Adding a Row Section 13.3 Editing a Row Section 13.4 Finding a Row Section 13.5 Null Data Section 13.6 Navigating Hierarchical Data Section 13.7 Annotations Chapter 14 DataAdapters Section 14.1 Creating DataAdapter Object Section 14.2 Retrieving Data from the Data Source Section 14.3 Retrieving Schema Information from the Data Source Section 14.4 Updating the Data Source Section 14.5 Mapping Tables and Columns Section 14.6 AcceptChangesDuringFill Section 14.7 ContinueUpdateOnError Section 14.8 DataAdapter Events Chapter 15 Updating the Data Source Section 15.1 SqlCommandBuilder Class Overview Section 15.2 Updating a Data Source Using Command Builder Section 15.3 Updating a Data Source Using Custom Logic Section 15.4 Refreshing Data After Updating Section 15.5 Retrieving Updated Values from the Data Source Section 15.6 Updating Data in Related Tables Section 15.7 Handling Concurrency Issues Section 15.8 Optimization This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com Chapter 16 Transactions Section 16.1 Manual Transactions Section 16.2 Isolation Levels Section 16.3 Savepoints Section 16.4 Nested Transactions Section 16.5 Transactions Using a DataAdapter Section 16.6 Automatic Transactions Chapter 17 XML and the DataSet Section 17.1 DataSet XML Methods Section 17.2 Shaping DataSet XML Section 17.3 Other NET XML Classes Section 17.4 XmlDataDocument Object Overview Section 17.5 Using the Data Objects to Edit XML Section 17.6 SQL Server 2000 XML Part II: ADO.NET Core Classes Chapter 18 The Connection Class Section 18.1 Comments/Troubleshooting Section 18.2 Properties Reference Section 18.3 Methods Reference Section 18.4 Events Reference Chapter 19 The Command Class Section 19.1 Comments/Troubleshooting Section 19.2 Properties Reference Section 19.3 Collections Reference Section 19.4 Methods Reference Chapter 20 The Parameter Class Section 20.1 Comments/Troubleshooting Section 20.2 Properties Reference Chapter 21 The DataReader Class Section 21.1 Comments/Troubleshooting Section 21.2 Properties Reference Section 21.3 Methods Reference Chapter 22 The DataSet Class Section 22.1 Comments/Troubleshooting Section 22.2 Properties Reference Section 22.3 Collections Reference Section 22.4 Methods Reference Section 22.5 Events Reference Chapter 23 The DataTable Class Section 23.1 Comments/Troubleshooting Section 23.2 Properties Reference Section 23.3 Collections Reference Section 23.4 Methods Reference Section 23.5 Events Reference This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com Chapter 24 The DataColumn Class Section 24.1 Comments/Troubleshooting Section 24.2 Properties Reference Section 24.3 Collections Reference Chapter 25 The DataRow Class Section 25.1 Comments/Troubleshooting Section 25.2 Properties Reference Section 25.3 Collections Reference Section 25.4 Methods Reference Chapter 26 The Constraint Class Section 26.1 Comments/Troubleshooting Section 26.2 Properties Reference Section 26.3 Collections Reference Chapter 27 The DataRelation Class Section 27.1 Comments/Troubleshooting Section 27.2 Properties Reference Section 27.3 Collections Reference Chapter 28 The DataView Class Section 28.1 Comments/Troubleshooting Section 28.2 Properties Reference Section 28.3 Methods Reference Section 28.4 Events Reference Chapter 29 The DataAdapter Class Section 29.1 Comments/Troubleshooting Section 29.2 Properties Reference Section 29.3 Collections Reference Section 29.4 Methods Reference Section 29.5 Events Reference Chapter 30 The CommandBuilder Class Section 30.1 Comments/Troubleshooting Section 30.2 Properties Reference Section 30.3 Methods Reference Chapter 31 The Transaction Class Section 31.1 Comments/Troubleshooting Section 31.2 Properties Reference Section 31.3 Methods Reference Part III: API Quick Reference Chapter 32 How to Use This Quick Reference Section 32.1 Finding a Quick-Reference Entry Section 32.2 Reading a Quick-Reference Entry Chapter 33 Converting from C# to VB Syntax Section 33.1 General Considerations Section 33.2 Classes This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com Section 33.2 Section 33.3 Section 33.4 Section 33.5 Section 33.6 Section 33.7 Classes Structures Interfaces Class, Structure, and Interface Members Delegates Enumerations Chapter 34 The System.Data Namespace AcceptRejectRule CommandBehavior CommandType ConnectionState Constraint ConstraintCollection ConstraintException DataColumn DataColumnChangeEventArgs DataColumnChangeEventHandler DataColumnCollection DataException DataRelation DataRelationCollection DataRow DataRowAction DataRowChangeEventArgs DataRowChangeEventHandler DataRowCollection DataRowState DataRowVersion DataRowView DataSet DataSysDescriptionAttribute DataTable DataTableCollection DataView DataViewManager DataViewRowState DataViewSetting DataViewSettingCollection DBConcurrencyException DbType DeletedRowInaccessibleException DuplicateNameException EvaluateException FillErrorEventArgs FillErrorEventHandler ForeignKeyConstraint IColumnMapping IColumnMappingCollection IDataAdapter IDataParameter IDataParameterCollection IDataReader This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com IDataRecord IDbCommand IDbConnection IDbDataAdapter IDbDataParameter IDbTransaction InRowChangingEventException InternalDataCollectionBase InvalidConstraintException InvalidExpressionException IsolationLevel ITableMapping ITableMappingCollection MappingType MergeFailedEventArgs MergeFailedEventHandler MissingMappingAction MissingPrimaryKeyException MissingSchemaAction NoNullAllowedException ParameterDirection PropertyAttributes PropertyCollection ReadOnlyException RowNotInTableException Rule SchemaType SqlDbType StateChangeEventArgs StateChangeEventHandler StatementType StrongTypingException SyntaxErrorException TypedDataSetGenerator TypedDataSetGeneratorException UniqueConstraint UpdateRowSource UpdateStatus VersionNotFoundException XmlReadMode XmlWriteMode Chapter 35 The System.Data.Common Namespace DataAdapter DataColumnMapping DataColumnMappingCollection DataTableMapping DataTableMappingCollection DbDataAdapter DBDataPermission DBDataPermissionAttribute DbDataRecord DbEnumerator This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com DbEnumerator RowUpdatedEventArgs RowUpdatingEventArgs Chapter 36 The System.Data.SqlClient Namespace SqlClientPermission SqlClientPermissionAttribute SqlCommand SqlCommandBuilder SqlConnection SqlDataAdapter SqlDataReader SqlError SqlErrorCollection SqlException SqlInfoMessageEventArgs SqlInfoMessageEventHandler SqlParameter SqlParameterCollection SqlRowUpdatedEventArgs SqlRowUpdatedEventHandler SqlRowUpdatingEventArgs SqlRowUpdatingEventHandler SqlTransaction Chapter 37 The System.Data.OleDb Namespace OleDbCommand OleDbCommandBuilder OleDbConnection OleDbDataAdapter OleDbDataReader OleDbError OleDbErrorCollection OleDbException OleDbInfoMessageEventArgs OleDbInfoMessageEventHandler OleDbParameter OleDbParameterCollection OleDbPermission OleDbPermissionAttribute OleDbRowUpdatedEventArgs OleDbRowUpdatedEventHandler OleDbRowUpdatingEventArgs OleDbRowUpdatingEventHandler OleDbSchemaGuid OleDbTransaction OleDbType Chapter 38 The System.Data.SqlTypes Namespace INullable SqlBinary SqlBoolean SqlByte This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com SqlCompareOptions SqlDateTime SqlDecimal SqlDouble SqlGuid SqlInt16 SqlInt32 SqlInt64 SqlMoney SqlNullValueException SqlSingle SqlString SqlTruncateException SqlTypeException Part IV: Appendixes Appendix A ADO.NET Providers Section A.1 The SQL Server Provider Section A.2 The OLE DB Provider Section A.3 The ODBC NET Provider Section A.4 The Oracle NET Provider Section A.5 The ODP.NET Provider Appendix B ADO.NET XML Extensions Section B.1 codegen Namespace Section B.2 msdata Namespace Section B.3 diffgr Namespace Appendix C Microsoft Data Engine (MSDE) Section C.1 Installing MSDE Section C.2 MSDE Essentials Section C.3 Adding the Northwind Data Section C.4 Migrating MSDE to SQL Server Type, Method, Property, and Field Index A-L M-Z Colophon Index [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] OCI (Oracle Call Interface) ODBC NET provider 2nd connection pooling and connection strings and recommendations for selecting ODP.NET provider OLE DB NET provider 2nd connection pooling and connection strings and parameterized queries and recommendations for selecting schema tables, retrieving with OleDbConnection class OleDbDataAdapter class OleDbDataReader class OleDbError class OleDbErrorCollection class OleDbException class OleDbInfoMessageEventArgs class OleDbInfoMessageEventHandler delegate OleDbLiteral enumeration OleDbParameter class OleDbParameterCollection class OleDbPermission class OleDbPermissionAttribute class OleDbRowUpdatedEventArgs class OleDbRowUpdatedEventHandler delegate OleDbRowUpdatingEventArgs class OleDbRowUpdatingEventHandler delegate OleDbSchemaGuid class OleDbTransaction class OleDbType enumeration Open( ) method, for connections Oracle NET provider 2nd connection pooling and 2nd connection strings and Oracle Call Interface (OCI) Ordinal property Original row version OSQL utility output parameters stored procedures and using to retrieve updated values from data source [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] PacketSize property Parameter class 2nd Parameter objects 2nd for return values ParameterDirection enumeration parameterized commands benefits of parameterized queries, using to retrieve data from data source parameters 2nd [See also input parameters; output parameters] deriving Parameters collection 2nd executing stored procedures and retrieving parameters from 2nd Parameters property 2nd parent rows ForeignKeyConstraint and ParentRelations collection ParentTableNameRow( ) method parse event pattern matching percent sign (%), in pattern matching performance CommandBehavior enumeration, benefits of connection pooling and DataReaders, benefits of multiple result sets, benefits of optimizing parameterized commands and referential integrity and rows and types accessors, drawbacks of performance counters PostionChanged event Prefix property DataColumn class DataSet class DataTable class Prepare( ) method primary key referential integrity and PrimaryKey collection PrimaryKey property properties C#/Visual Basic and for Connection objects special index for properties reference Command class CommandBuilder class Connection class Constraint class DataAdapter class 2nd DataColumn class DataReader class This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com DataRelation class DataRow class DataSet class DataTable class DataView class Parameter class Transaction class PropertyAttributes enumeration PropertyCollection class Proposed row version [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] queries, using to retrieve updated values from data source query commands question-mark placeholders quick reference to namespaces QuotePrefix property QuoteSuffix property [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] Read( ) method ReadOnly property 2nd ReadOnlyException class ReadXml( ) method 2nd 3rd ReadXmlSchema( ) method 2nd record navigation 2nd records updating with parameterized commands with stored procedures referential integrity preserving when updating data source RefreshSchema( ) method update objects and RejectChanges( ) method for DataRows 2nd for DataSets 2nd 3rd for DataTables 2nd relations 2nd [See also DataRelation objects] vs join queries reasons for defining Relations collection Relations property Remove( ) method for columns for constraints for relations for rows for tables RemoveAt( ) method for columns for constraints for rows for tables Repeater data control (ASP.NET) Reset( ) method for DataSets 2nd for DataTables 2nd resource lock modes resources for further reading NET ASP.NET data binding COM+ services custom data providers information schemas MSDE OSQL utility SQL SQL Server 2000 result sets, returning multiple return values Rollback( ) method 2nd 3rd row state, filtering by RowChanged event 2nd This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com RowChanging event 2nd RowDeleted event 2nd RowDeleting event 2nd RowError property 2nd 3rd RowFilter property 2nd 3rd RowNotInTableException class rows 2nd [See also DataRow objects] in DataTables, committing/discarding changes deleting 2nd errors in failed updates and removing from DataSets 2nd from DataTables 2nd 3rd single, reading with DataReaders in strongly typed DataSets, working with subsets of updating Rows collection Rows property RowState property 2nd 3rd RowStateFilter property RowUpdated event 2nd 3rd using to retrieve updated values from data source RowUpdatedEventArgs class RowUpdating event 2nd RowUpdatingEventArgs class rowversion timestamp field Rule enumeration options for [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] sample code aggregate commands BLOBs, writing to file changes, committing/discarding columns 2nd 3rd concurrency handling connections, opening/testing constraints data, updating 2nd 3rd DataReaders, fast-forward DataSets 2nd strongly typed DataTable events DataViews, displaying multiple DiffGram format FillError event FillSchema( ) method isolation levels list binding ASP.NET Windows ListViews, filling with all columns many-to-many relationships[sample code many to many relationships mapping tables/columns master-detail form master-detail data binding native SQL data types, using navigational control parameterized queries parameters PositionChanged event primary key records, updating 2nd 3rd relational filter expressions rows 2nd errors in update event handlers for savepoints schema information, retrieving SQL Server 2000 support for XML stored procedures for commands queries for updating records with with output parameters with return values tables 2nd templates and styles transactions automatic using DataAdapters TreeViews, hierarchical UniqueConstraint objects This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com update objects Update( ) method values, formatting/parsing web service code web service returning modified DataSet Save( ) method, for savepoints 2nd savepoints schema inference schema information, retrieving from data source schemas ADO.NET objects and cloning for DataTables XML and SchemaType enumeration DataAdapter class System.Data namespace Select( ) method, rows and 2nd 3rd SelectCommand objects SelectCommand property SelectedValue property semicolon (;) in C# syntax in connection strings ServerVersion property SetAbort( ) method, for automatic transactions SetColumnError( ) method 2nd SetColumnNameNull( ) method 2nd SetComplete( ) method, for automatic transactions SetParentRow( ) method 2nd single-value binding sorting data SQL Server connection strings and migrating MSDE database to schema tables, retrieving with stored procedures and XML extensions for SQL Server NET provider 2nd connection pooling and 2nd recommendations for selecting SQL Server Books Online SQL statements, benefits of vs stored procedures SqlBinary structure SqlBoolean structure SqlByte structure SqlClientPermission class SqlClientPermissionAttribute class SqlCommand class SqlCommandBuilder class 2nd SqlCompareOptions enumeration SqlConnection class SqlDataAdapter class SqlDataReader class SqlDateTime structure SqlDbType enumeration SqlDecimal structure SqlDouble structure This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com SqlError class SqlErrorCollection class SqlException class SqlGuid structure SqlInfoMessageEventArgs class SqlInfoMessageEventHandler delegate SqlInt16 structure SqlInt32 structure SqlInt64 structure SqlMoney structure SqlNullValueException class SqlParameter class SqlParameterCollection class SqlRowUpdatedEventArgs class SqlRowUpdatedEventHandler delegate SqlRowUpdatingEventArgs class SqlRowUpdatingEventHandler delegate SqlSingle structure SqlString structure SqlTransaction class SqlTruncateException class SqlTypeException class SQLXML data provider SQLXML Managed Classes SqlXmlCommand class State property StateChange event StateChangeEventArgs class StateChangeEventHandler delegate StatementType enumeration stored procedures benefits of vs SQL statements DataReader column order and with DataReaders drawbacks of executing SQL Server system updating data source and using to retrieve data from data source strongly typed DataSet objects [See DataSet objects, strongly typed] StrongTypingException class structs, namespace quick reference and structures, C#/Visual Basic and styles, templates and subsets of rows SyntaxErrorException class system stored procedures System.Data namespace System.Data.Common namespace System.Data.OleDb namespace System.Data.SqlClient namespace System.Data.SqlTypes namespace System.DBNull class [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] table joins, updating data source and table mappings Table property DataColumn class DataRow class table structure, modifying TableMappings collection TableName property 2nd TableNameChangeEvent class TableNameDataTable class TableNameRow class TableNameRow( ) method 2nd TableNameRows( ) method tables [See also DataSet objects; DataTable objects] creating programmatically Tables collection Tables property Tabular Data Stream (TDS) protocol templates, DataList ASP.NET data control and 2nd timestamp, concurrency handling and ToString( ) method Transaction class 2nd Transaction property transactions 2nd automatic Connection objects and connection pooling and manual nested TreeViews troubleshooting Command objects Connection objects Constraint objects DataColumns DataReaders DataRelations DataRows DataSets DataTables Parameter objects type mappings, for OLE DB NET provider Typed Accessor( ) method (TableName Row) typed accessors TypedDataSetGenerator class TypedDataSetGeneratorException class types names for special index for [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] Unique property UniqueConstraint class 2nd UniqueConstraint objects 2nd 3rd untyped DataSet objects 2nd update objects creating UPDATE statement (SQL) Update( ) method ContinueUpdateOnError property and for CommandBuilder objects for DataAdapters 2nd for rows UpdateCommand objects 2nd DataAdapters and UpdateCommand property UpdatedRowSource property UpdateRowSource enumeration UpdateRule property UpdateStatus enumeration 2nd updating data source [See data source, updating] records URLs IBuySpy OLE DB providers XSL standard using statement (C#) [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] ValueMember property VersionNotFoundException class Visual Basic syntax, converting to C# syntax [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] WHERE clause (SQL) Windows Forms data binding 2nd WorkstationId property WriteXml( ) method 2nd 3rd 4th WriteXmlSchema( ) method 2nd [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com [ Team LiB ] [SYMBOL] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] XDR standard (Microsoft) XML (Extensible Markup Language) NET Framework classes for DataSet objects and editing with ADO.NET data objects SQL Server 2000 and XMLDATA clause XmlDataDocument objects XmlReadMode enumeration 2nd XmlWriteMode enumeration 2nd XPath queries performed with XmlDataDocument objects submitting with SQLXML data provider XSD schema file, for DataSets 2nd codegen namespace and msdata namespace and XSL (Extensible Stylesheet Language) XSLT transformations [ Team LiB ] This document is created with a trial version of CHM2PDF Pilot http://www.colorpilot.com Brought to You by Like the book? Buy it! ... ConstraintException DataColumn DataColumnChangeEventArgs DataColumnChangeEventHandler DataColumnCollection DataException DataRelation DataRelationCollection DataRow DataRowAction DataRowChangeEventArgs DataRowChangeEventHandler... DataRowChangeEventHandler DataRowCollection DataRowState DataRowVersion DataRowView DataSet DataSysDescriptionAttribute DataTable DataTableCollection DataView DataViewManager DataViewRowState DataViewSetting... System.Data.Common Namespace DataAdapter DataColumnMapping DataColumnMappingCollection DataTableMapping DataTableMappingCollection DbDataAdapter DBDataPermission DBDataPermissionAttribute DbDataRecord

Ngày đăng: 26/03/2019, 11:16

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan