Cargando…

ADO ActiveX data objects /

Getting data across platforms and formats is a cornerstone of present-day applications development. ADO: ActiveX Data Objects is both an introduction and a complete reference to ADO (ActiveX Data Objects), Microsoft's universal data access solution. You'll learn how to easily access data i...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Roff, Jason T.
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Beijing ; Cambridge, MA : O'Reilly & Associates, 2001.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Table of Contents
  • Preface
  • Introduction and Organization
  • Part I: Learning ADO
  • Part II: Reference Section
  • Part III: Appendixes
  • About the Book
  • Audience
  • Conventions Used in This Book
  • Comments and Questions
  • Acknowledgments
  • I Learning ADO
  • Introduction to ADO
  • ADO in Context: Universal Data Access
  • ODBC
  • Jet/DAO
  • RDO
  • ODBCDirect
  • OLE DB
  • ADO
  • RDS
  • Putting It All Together
  • ADO and COM: Language Independence
  • COM
  • ADO and COM
  • When to Use ADO
  • Summary
  • The ADO Architecture
  • An Overview of the ADO ArchitectureADO Components
  • The Connection Object
  • The Command Object
  • The Parameters collection and the Parameter object
  • The Recordset Object
  • The Fields collection and the Field object
  • The Record Object
  • The Stream Object
  • The Properties Collection and the Property Object
  • The Errors Collection and the Error Object
  • Summary
  • Accessing ADO with Various Languages
  • Accessing ADO with Visual Basic
  • Referencing ActiveX Data Objects
  • Creating ActiveX Data Objects
  • Using ADO with Visual Basic: An Example
  • Accessing ADO with Visual C++Referencing ActiveX Data Objects
  • Creating ActiveX Data Objects
  • Using ADO with Visual C++: An Example
  • Accessing ADO with Visual J++
  • Referencing ActiveX Data Objects
  • Creating ActiveX Data Objects
  • Using ADO with Visual J++: An Example
  • Accessing ADO with VBScript
  • Referencing ActiveX Data Objects
  • Creating ActiveX Data Objects
  • Using ADO with VBScript: An Example
  • Accessing ADO with JScript
  • Referencing ActiveX Data Objects
  • Creating ActiveX Data Objects
  • Using ADO with JScript: An Example
  • SummaryThe Connection Object
  • Opening and Closing a Connection: Implicit Versus Explicit
  • Opening a Connection
  • Closing a Connection
  • Configuring Connections
  • Working with Connection Strings
  • Working with Data Source Names
  • Installing the DSNs
  • Opening a connection with a DSN
  • Setting Connection Options
  • Default database
  • Data-access permissions
  • Timeout setting
  • Cursor location
  • Determining ADO Version Number and Connection State
  • Choosing a Data Provider
  • Executing Commands
  • The Execute Method
  • The CommandTimeout PropertyManaging Multiple Transactions
  • Starting a Transaction: The BeginTrans and CommitTrans Methods
  • Canceling a Transaction: The RollbackTrans Method
  • Nesting Transactions
  • Setting Transaction Options
  • Automatic creation of new transactions
  • Isolation level
  • Determining the Layout of Your Data Source
  • Summary
  • The Recordset Object
  • Cursors: Viewing a Recordset
  • Dynamic Cursor
  • Keyset Cursor
  • Static Cursor
  • Forward-Only Cursor
  • CursorType Example
  • Working with Recordsets
  • The Open Method