Articoli correlati a ACCESS DATABASE DESIGN & PROGRAMMING, 2N

ACCESS DATABASE DESIGN & PROGRAMMING, 2N - Brossura

 
9781565926264: ACCESS DATABASE DESIGN & PROGRAMMING, 2N

Sinossi

When using software products with graphical interfaces, we frequently focus so much on the details of how to use the interface that we forget about the more general concepts that allow us to understand and put the software to effective use. This is particularly true of a powerful database product like Microsoft Access. Novice, and sometimes even experienced, programmers are so concerned with how something is done in Access that they often lose sight of the general principles that underlie their database applications.Access Database Design & Programming, 2nd Edition, an update to the bestselling first edition, features:

  • A discussion of Access' new VBA Integrated Development Environment, which, for the first time, is the one used by Word, Excel, and PowerPoint
  • An expansion of the discussion of the VBA language itself, in response to reader requests
  • A discussion of Microsoft's latest data access technology, called Active Data Objects (or ADO), along with a discussion of Open Database Connectivity(ODBC), which is intimately connected with ADO
Unlike other Access books that take the long, detailed approach to every topic of concern to Access programmers, this book focuses instead on the core concepts, enabling programmers to develop solid, effective database applications. As a result, important topics such as designing forms and reports, database security, database replication, and programming for multiuser applications are simply not discussed. This book is a kind of "second course" in Access that provides a relatively experienced Access user who is new to programming with the frequently overlooked techniques necessary to successfully develop in the Microsoft Access environment. Anyone interested in learning Access in-depth, rather than just scraping the surface, will enjoy and immensely benefit from reading this book.Although this book is really an introduction directed to intermediate Microsoft Access users who are novice programmers, it should appeal to all levels of Access developers. For novice programmers, it focuses on a key body of knowledge that is typically neglected, but is nevertheless essential for developing effective database applications. For intermediate and advanced developers, its treatment of database design and queries provides a handy treatment that otherwise has to be gleaned from relatively uninteresting textbooks, while its programming chapters constitute a handy reference to some basic operations that can be performed using DAO or the Access object model.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

Contenuti

Dedication; Preface; The Book’s Audience; Organization of This Book; Conventions in This Book; Obtaining Updated Information; Request for Comments; Acknowledgments; Database Design; Chapter 1: Introduction; 1.1 Database Design; 1.2 Database Programming; Chapter 2: The Entity-Relationship Model of a Database; 2.1 What Is a Database?; 2.2 Entities and Their Attributes; 2.3 Keys and Superkeys; 2.4 Relationships Between Entities; Chapter 3: Implementing Entity-Relationship Models: Relational Databases; 3.1 Implementing Entities; 3.2 A Short Glossary; 3.3 Implementing the Relationships in a Relational Database; 3.4 The LIBRARY Relational Database; 3.5 Index Files; 3.6 NULL Values; Chapter 4: Database Design Principles; 4.1 Redundancy; 4.2 Normal Forms; 4.3 First Normal Form; 4.4 Functional Dependencies; 4.5 Second Normal Form; 4.6 Third Normal Form; 4.7 Boyce-Codd Normal Form; 4.8 Normalization; Database Queries; Chapter 5: Query Languages and the Relational Algebra; 5.1 Query Languages; 5.2 Relational Algebra and Relational Calculus; 5.3 Details of the Relational Algebra; Chapter 6: Access Structured Query Language (SQL); 6.1 Introduction to Access SQL; 6.2 Access Query Design; 6.3 Access Query Types; 6.4 Why Use SQL?; 6.5 Access SQL; 6.6 The DDL Component of Access SQL; 6.7 The DML Component of Access SQL; Database Architecture; Chapter 7: Database System Architecture; 7.1 Why Program?; 7.2 Database Systems; 7.3 Database Management Systems; 7.4 The Jet DBMS; 7.5 Data Definition Languages; 7.6 Data Manipulation Languages; 7.7 Host Languages; 7.8 The Client/Server Architecture; Visual Basic for Applications; Chapter 8: The Visual Basic Editor, Part I; 8.1 The Project Window; 8.2 The Properties Window; 8.3 The Code Window; 8.4 The Immediate Window; 8.5 Arranging Windows; Chapter 9: The Visual Basic Editor, Part II; 9.1 Navigating the IDE; 9.2 Getting Help; 9.3 Creating a Procedure; 9.4 Run Time, Design Time, and Break Mode; 9.5 Errors; 9.6 Debugging; Chapter 10: Variables, Data Types, and Constants; 10.1 Comments; 10.2 Line Continuation; 10.3 Constants; 10.4 Variables and Data Types; 10.5 VBA Operators; Chapter 11: Functions and Subroutines; 11.1 Calling Functions; 11.2 Calling Subroutines; 11.3 Parameters and Arguments; 11.4 Exiting a Procedure; 11.5 Public and Private Procedures; 11.6 Fully Qualified Procedure Names; Chapter 12: Built-in Functions and Statements; 12.1 The MsgBox Function; 12.2 The InputBox Function; 12.3 VBA String Functions; 12.4 Miscellaneous Functions and Statements; 12.5 Handling Errors in Code; Chapter 13: Control Statements; 13.1 The If...Then Statement; 13.2 The For Loop; 13.3 Exit For; 13.4 The For Each Loop; 13.5 The Do Loop; 13.6 The Select Case Statement; 13.7 A Final Note on VBA; Data Access Objects; Chapter 14: Programming DAO: Overview; 14.1 Objects; 14.2 The DAO Object Model; 14.3 The Microsoft Access Object Model; 14.4 Referencing Objects; 14.5 Collections Are Objects Too; 14.6 The Properties Collection; 14.7 Closing DAO Objects; 14.8 A Look at the DAO Objects; 14.9 The CurrentDb Function; Chapter 15: Programming DAO: Data Definition Language; 15.1 Creating a Database; 15.2 Opening a Database; 15.3 Creating a Table and Its Fields; 15.4 Creating an Index; 15.5 Creating a Relation; 15.6 Creating a QueryDef; Chapter 16: Programming DAO: Data Manipulation Language; 16.1 Recordset Objects; 16.2 Opening a Recordset; 16.3 Moving Through a Recordset; 16.4 Finding Records in a Recordset; 16.5 Editing Data Using a Recordset; ActiveX Data Objects; Chapter 17: ADO and OLE DB; 17.1 What Is ADO?; 17.2 Installing ADO; 17.3 ADO and OLE DB; 17.4 The ADO Object Model; 17.5 Finding OLE DB Providers; 17.6 A Closer Look at Connection Strings; Appendixes; DAO 3.0/3.5 Collections, Properties, and Methods; DAO Classes; A Collection Object; Connection Object (DAO 3.5 Only); Container Object; Database Object; DBEngine Object; Document Object; Error Object; Field Object; Group Object; Index Object; Parameter Object; Property Object; QueryDef Object; Recordset Object; Relation Object; TableDef Object; User Object; Workspace Object; The Quotient: An Additional Operation of the Relational Algebra; Open Database Connectivity (ODBC); Introduction; The ODBC Driver Manager; The ODBC Driver; Data Sources; Getting ODBC Driver Help; Getting ODBC Information Using Visual Basic; Obtaining or Creating the Sample Database; Creating the Database; Creating the BOOKS Table; Creating the AUTHORS Table; Creating the PUBLISHERS Table; Creating the BOOK/AUTHOR Table; Backing Up the Database; Entering and Running the Sample Programs; Suggestions for Further Reading; Colophon;

Product Description

Book by Roman PhD Steven

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreO'Reilly Media Inc
  • Data di pubblicazione1999
  • ISBN 10 1565926269
  • ISBN 13 9781565926264
  • RilegaturaCopertina flessibile
  • LinguaInglese
  • Numero di pagine409

Compra usato

Condizioni: molto buono
All orders are dispatched within...
Visualizza questo articolo

EUR 5,92 per la spedizione da Regno Unito a Italia

Destinazione, tempi e costi

EUR 26,82 per la spedizione da U.S.A. a Italia

Destinazione, tempi e costi

Risultati della ricerca per ACCESS DATABASE DESIGN & PROGRAMMING, 2N

Foto dell'editore

Roman, Steven
Editore: O'Reilly, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato paperback

Da: Goldstone Books, Llandybie, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

paperback. Condizione: Very Good. All orders are dispatched within one working day from our UK warehouse. We've been selling books online since 2004! We have over 750,000 books in stock. No quibble refund if not completely satisfied. Codice articolo mon0007180304

Contatta il venditore

Compra usato

EUR 3,84
Convertire valuta
Spese di spedizione: EUR 5,92
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Roman, Steven
Editore: O'REILLY & ASSOCIATES, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Paperback

Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Good. The book has been read but remains in clean condition. All pages are intact and the cover is intact. Some minor wear to the spine. Codice articolo GOR002768094

Contatta il venditore

Compra usato

EUR 2,05
Convertire valuta
Spese di spedizione: EUR 10,68
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Roman, Steven
Editore: O'REILLY & ASSOCIATES, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Paperback

Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo GOR003234037

Contatta il venditore

Compra usato

EUR 2,05
Convertire valuta
Spese di spedizione: EUR 10,68
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Roman, Steven
Editore: O'Reilly Media, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Paperback

Da: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: As New. No Jacket. Pages are clean and are not marred by notes or folds of any kind. ~ ThriftBooks: Read More, Spend Less 1.6. Codice articolo G1565926269I2N00

Contatta il venditore

Compra usato

EUR 6,80
Convertire valuta
Spese di spedizione: EUR 10,75
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

PhD Steven Roman
Editore: O'Reilly Media 11/07/1999, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Brossura

Da: AwesomeBooks, Wallingford, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Very Good. This book is in very good condition and will be shipped within 24 hours of ordering. The cover may have some limited signs of wear but the pages are clean, intact and the spine remains undamaged. This book has clearly been well maintained and looked after thus far. Money back guarantee if you are not satisfied. See all our books here, order more than 1 book and get discounted shipping. . Codice articolo 7719-9781565926264

Contatta il venditore

Compra usato

EUR 12,19
Convertire valuta
Spese di spedizione: EUR 8,88
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

PhD Steven Roman
Editore: O'Reilly Media 11/07/1999, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Brossura

Da: Bahamut Media, Reading, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Very Good. Shipped within 24 hours from our UK warehouse. Clean, undamaged book with no damage to pages and minimal wear to the cover. Spine still tight, in very good condition. Remember if you are not happy, you are covered by our 100% money back guarantee. Codice articolo 6545-9781565926264

Contatta il venditore

Compra usato

EUR 12,19
Convertire valuta
Spese di spedizione: EUR 8,88
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, PhD
Editore: O'Reilly Media, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Brossura

Da: Wonder Book, Frederick, MD, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Good condition. Nutshell Handbooks. 2nd edition. A copy that has been read but remains intact. May contain markings such as bookplates, stamps, limited notes and highlighting, or a few light stains. Bundled media such as CDs, DVDs, floppy disks or access codes may not be included. Codice articolo K13D-00080

Contatta il venditore

Compra usato

EUR 5,56
Convertire valuta
Spese di spedizione: EUR 22,36
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, PhD
Editore: O'Reilly Media, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Brossura

Da: SecondSale, Montgomery, IL, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Very Good. Item in very good condition! Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00072958558

Contatta il venditore

Compra usato

EUR 3,67
Convertire valuta
Spese di spedizione: EUR 31,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, PhD
Editore: O'Reilly Media, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Brossura

Da: SecondSale, Montgomery, IL, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Item in good condition. Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00069572992

Contatta il venditore

Compra usato

EUR 3,67
Convertire valuta
Spese di spedizione: EUR 31,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, PhD
Editore: O'Reilly Media, 1999
ISBN 10: 1565926269 ISBN 13: 9781565926264
Antico o usato Brossura

Da: SecondSale, Montgomery, IL, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Acceptable. Item in good condition. Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00070854109

Contatta il venditore

Compra usato

EUR 3,67
Convertire valuta
Spese di spedizione: EUR 31,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Vedi altre 4 copie di questo libro

Vedi tutti i risultati per questo libro