1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-24 01:29:19 +03:00

Update, polish, consistencify preface/intro sections.

This commit is contained in:
Peter Eisentraut
2001-02-03 19:03:27 +00:00
parent 80dbae395d
commit 7c164dca0b
19 changed files with 364 additions and 625 deletions

View File

@@ -1,51 +1,41 @@
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.32 2001/01/24 19:42:46 momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.33 2001/02/03 19:03:27 petere Exp $
PostgreSQL Programmer's Guide.
-->
<book id="programmer">
<title><![%single-book;[PostgreSQL &version;]]> Programmer's Guide</title>
<title>PostgreSQL &version; Programmer's Guide</title>
<bookinfo>
<corpauthor>The PostgreSQL Global Development Group</corpauthor>
<editor>
<firstname>Thomas</firstname>
<surname>Lockhart</surname>
<affiliation>
<orgname>Caltech/JPL</orgname>
</affiliation>
</editor>
<legalnotice>
<para>
<productname>PostgreSQL</productname> is Copyright &copy; 1996-2001
by PostgreSQL Global Development Group
</para>
</legalnotice>
&legal;
</bookinfo>
<preface id="pg-preface">
<title>Summary</title>
<![%single-book[
&intro;
]]>
<preface id="organization">
<title>Organization</title>
<para>
<productname>Postgres</productname>,
developed originally in the UC Berkeley Computer Science Department,
pioneered many of the object-relational concepts
now becoming available in some commercial databases.
It provides SQL92/SQL99 language support,
transaction integrity, and type extensibility.
<productname>PostgreSQL</productname> is an
open-source descendant of this original Berkeley code.
The first part of this manual is the description of the client-side
programming interfaces and support libraries for various languages.
The second part explains the <productname>PostgreSQL</productname>
approach to extensibility and describe how users can extend
<productname>PostgreSQL</productname> by adding user-defined types,
operators, aggregates, and both query language and programming
language functions. After a discussion of the
<productname>PostgreSQL</productname> rule system, we discuss the
trigger and SPI interfaces.
</para>
<para>
Proficiency with Unix and C programming is assumed.
</para>
</preface>
<![%single-book[
&intro-pg;
]]>
<part id="programmer-client">
<title>Client Interfaces</title>
&libpq;