Tải bản đầy đủ (.pdf) (7 trang)

a0072 c database basic morebook vn 9744

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (4.8 MB, 7 trang )



C# Database Basics

Michael Schmalz

Beijing • Cambridge • Farnham • Kưln • Sebastopol • Tokyo


C# Database Basics
by Michael Schmalz
Copyright © 2012 Michael Schmalz. All rights reserved.
Printed in the United States of America.
Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.
O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions
are also available for most titles (). For more information, contact our
corporate/institutional sales department: (800) 998-9938 or

Editor: Simon St. Laurent
Production Editor: Holly Bauer
Proofreader: O’Reilly Production Services

Cover Designer: Karen Montgomery
Interior Designer: David Futato
Illustrator: Robert Romano

Revision History for the First Edition:
First release
2012-01-25
See for release details.


Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of
O’Reilly Media, Inc. C# Database Basics, the image of a capybara, and related trade dress are trademarks
of O’Reilly Media, Inc.
Many of the designations used by manufacturers and sellers to distinguish their products are claimed as
trademarks. Where those designations appear in this book, and O’Reilly Media, Inc. was aware of a
trademark claim, the designations have been printed in caps or initial caps.
While every precaution has been taken in the preparation of this book, the publisher and authors assume
no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein.

ISBN: 978-1-449-30998-5
[LSI]
1327510187


Table of Contents

Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . v
1. First Steps: Form with a Datagrid . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Installing Software
Basic Syntax
C# Operators
Selection Statements
Adding Filtering
Some Other Considerations
What’s Next?

1
2
2
4

12
16
19

2. C# Data Access to SQL Server . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
What’s Next

30

3. Building Data Entry Forms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
Binding a TextBox to Data
Simple Data Entry Form

32
36

4. Creating Data Entry Forms with Built-In Controls . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
5. Data in a Web Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
Writing a Web Service
What’s Next

64
78

6. Editing Access Data on the Web . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
What’s Next?

88

7. Additional C# and Database Topics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89

Referring to Connection Strings
Building Strings with Database Data
Reporting

89
91
93
iii


About the Author
Michael Schmalz works in financial services and performs business and technology
consulting in a variety of industries. He has done technical editing for O'Reilly on several Microsoft Office books and authored Integrating Excel and Access (O’Reilly).
Michael has a degree in Finance from Penn State. He lives with his wife and children
in Pennsylvania.




×