Beginning Databases With PostgreSQL_ Fro - Matthew_ Neil.pdf

(18792 KB) Pobierz
22912276 UNPDF
22912276.051.png
Beginning Databases
with PostgreSQL
From Novice to Professional, Second Edition
NEIL MATTHEW AND RICHARD STONES
22912276.062.png 22912276.073.png 22912276.084.png 22912276.001.png 22912276.002.png 22912276.003.png 22912276.004.png 22912276.005.png 22912276.006.png 22912276.007.png 22912276.008.png 22912276.009.png 22912276.010.png 22912276.011.png 22912276.012.png 22912276.013.png 22912276.014.png 22912276.015.png 22912276.016.png 22912276.017.png 22912276.018.png 22912276.019.png
Beginning Databases with PostgreSQL: From Novice to Professional, Second Edition
Copyright © 2005 by Neil Matthew and Richard Stones
All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means,
electronic or mechanical, including photocopying, recording, or by any information storage or retrieval
system, without the prior written permission of the copyright owner and the publisher.
ISBN (pbk): 1-59059-478-9
Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1
Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence
of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark
owner, with no intention of infringement of the trademark.
Lead Editor: Jason Gilmore
Contributing Author: Jon Parise
Technical Reviewer: Robert Treat
Editorial Board: Steve Anglin, Dan Appleman, Ewan Buckingham, Gary Cornell, Tony Davis, Jason Gilmore,
Jonathan Hassell, Chris Mills, Dominic Shakeshaft, Jim Sumser
Assistant Publisher: Grace Wong
Project Manager: Sofia Marchant
Copy Manager: Nicole LeClerc
Copy Editor: Marilyn Smith
Production Manager: Kari Brooks-Copony
Production Editor: Katie Stence
Compositor: Susan Glinert
Proofreader: Elizabeth Berry
Indexer: John Collin
Artist: Kinetic Publishing Services, LLC
Cover Designer: Kurt Krames
Manufacturing Manager: Tom Debolski
Distributed to the book trade in the United States by Springer-Verlag New York, Inc., 233 Spring Street,
6th Floor, New York, NY 10013, and outside the United States by Springer-Verlag GmbH & Co. KG, Tiergar-
tenstr. 17, 69112 Heidelberg, Germany.
In the United States: phone 1-800-SPRINGER, fax 201-348-4505, e-mail o rders@springer-ny.com , or visit
http://www.springer-ny.com . Outside the United States: fax +49 6221 345229, e-mail orders@springer.de ,
or visit http://www.springer.de .
For information on translations, please contact Apress directly at 2560 Ninth Street, Suite 219, Berkeley, CA
94710. Phone 510-549-5930, fax 510-549-5939, e-mail info@apress.com , or visit http://www.apress.com .
The information in this book is distributed on an “as is” basis, without warranty. Although every precaution
has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to
any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly
by the information contained in this work.
The source code for this book is available to readers at http://www.apress.com in the Downloads section.
22912276.020.png 22912276.021.png 22912276.022.png 22912276.023.png 22912276.024.png 22912276.025.png 22912276.026.png 22912276.027.png 22912276.028.png 22912276.029.png 22912276.030.png 22912276.031.png 22912276.032.png 22912276.033.png 22912276.034.png 22912276.035.png 22912276.036.png 22912276.037.png 22912276.038.png 22912276.039.png 22912276.040.png
Contents at a Glance
About the Authors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii
About the Technical Reviewer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii
CHAPTER 1
Introduction to PostgreSQL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
CHAPTER 2
Relational Database Principles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
CHAPTER 3
Getting Started with PostgreSQL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
CHAPTER 4
Accessing Your Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
CHAPTER 5
PostgreSQL Command-Line and Graphical Tools . . . . . . . . . . . . . . 113
CHAPTER 6
Data Interfacing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 149
CHAPTER 7
Advanced Data Selection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
CHAPTER 8
Data Definition and Manipulation . . . . . . . . . . . . . . . . . . . . . . . . . . . . 201
CHAPTER 9
Transactions and Locking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 243
CHAPTER 10
Functions, Stored Procedures, and Triggers . . . . . . . . . . . . . . . . . . 267
CHAPTER 11
PostgreSQL Administration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 309
CHAPTER 12
Database Design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 357
CHAPTER 13
Accessing PostgreSQL from C Using libpq . . . . . . . . . . . . . . . . . . . . 385
CHAPTER 14
Accessing PostgreSQL from C Using Embedded SQL . . . . . . . . . . 419
CHAPTER 15
Accessing PostgreSQL from PHP . . . . . . . . . . . . . . . . . . . . . . . . . . . . 445
CHAPTER 16
Accessing PostgreSQL from Perl . . . . . . . . . . . . . . . . . . . . . . . . . . . . 465
CHAPTER 17
Accessing PostgreSQL from Java . . . . . . . . . . . . . . . . . . . . . . . . . . . . 491
CHAPTER 18
Accessing PostgreSQL from C# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 517
APPENDIX A
PostgreSQL Database Limits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 543
APPENDIX B
PostgreSQL Data Types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 545
iii
22912276.041.png 22912276.042.png 22912276.043.png 22912276.044.png 22912276.045.png 22912276.046.png 22912276.047.png 22912276.048.png 22912276.049.png 22912276.050.png 22912276.052.png 22912276.053.png 22912276.054.png 22912276.055.png 22912276.056.png 22912276.057.png 22912276.058.png 22912276.059.png 22912276.060.png 22912276.061.png 22912276.063.png
iv
CONTENTS AT A GLANCE
APPENDIX C
PostgreSQL SQL Syntax Reference . . . . . . . . . . . . . . . . . . . . . . . . . . 551
APPENDIX D
psql Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 573
APPENDIX E
Database Schema and Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 577
APPENDIX F
Large Objects Support in PostgreSQL . . . . . . . . . . . . . . . . . . . . . . . . 581
INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
22912276.064.png 22912276.065.png 22912276.066.png 22912276.067.png 22912276.068.png 22912276.069.png 22912276.070.png 22912276.071.png 22912276.072.png 22912276.074.png 22912276.075.png 22912276.076.png 22912276.077.png 22912276.078.png 22912276.079.png 22912276.080.png 22912276.081.png 22912276.082.png 22912276.083.png 22912276.085.png 22912276.086.png
Zgłoś jeśli naruszono regulamin