programmer.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:5k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <!--
  2. $Header: /usr/local/cvsroot/pgsql/doc/src/sgml/programmer.sgml,v 1.18 1999/06/23 06:21:19 thomas Exp $
  3. Postgres Programmer's Guide.
  4. $Log: programmer.sgml,v $
  5. Revision 1.18  1999/06/23 06:21:19  thomas
  6. Remove User's Guide entities since they were not being used.
  7. Revision 1.16  1999/05/26 17:30:30  thomas
  8. Add chapters on CVS access, MVCC, SQL theory to the docs.
  9. Add an appendix with more details on date/time attributes and handling.
  10. Update most references to Postgres version numbers to 6.5,
  11.  *except* for the porting list which will require a report
  12.  from a successful installation to be updated.
  13. Revision 1.12  1999/02/13 03:54:51  thomas
  14. Re-enable arch-dev.sgml now that it has new information from Stefan's
  15.  Master's Thesis.
  16. Revision 1.10  1998/10/31 09:36:36  thomas
  17. Cleanup for v6.4 release.
  18. Make new file current.sgml to hold release info for the current release.
  19.  Should be moved to release.sgml before filling with next release info.
  20. -->
  21. <!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
  22. <!entity about    SYSTEM "about.sgml">
  23. <!entity history  SYSTEM "history.sgml">
  24. <!entity info     SYSTEM "info.sgml">
  25. <!entity legal    SYSTEM "legal.sgml">
  26. <!entity notation SYSTEM "notation.sgml">
  27. <!entity y2k      SYSTEM "y2k.sgml">
  28. <!entity intro-pg SYSTEM "intro-pg.sgml">
  29. <!entity arch-pg  SYSTEM "arch-pg.sgml">
  30. <!entity extend   SYSTEM "extend.sgml">
  31. <!entity rules    SYSTEM "rules.sgml">
  32. <!entity xfunc    SYSTEM "xfunc.sgml">
  33. <!entity xtypes   SYSTEM "xtypes.sgml">
  34. <!entity xoper    SYSTEM "xoper.sgml">
  35. <!entity xaggr    SYSTEM "xaggr.sgml">
  36. <!entity xindex   SYSTEM "xindex.sgml">
  37. <!entity gist     SYSTEM "gist.sgml">
  38. <!entity dfunc    SYSTEM "dfunc.sgml">
  39. <!entity lobj     SYSTEM "lobj.sgml">
  40. <!entity trigger  SYSTEM "trigger.sgml">
  41. <!entity spi      SYSTEM "spi.sgml">
  42. <!entity func-ref SYSTEM "func-ref.sgml">
  43. <!entity libpq    SYSTEM "libpq.sgml">
  44. <!entity libpqpp  SYSTEM "libpq++.sgml">
  45. <!entity libpgtcl SYSTEM "libpgtcl.sgml">
  46. <!entity ecpg     SYSTEM "ecpg.sgml">
  47. <!entity odbc     SYSTEM "odbc.sgml">
  48. <!entity jdbc     SYSTEM "jdbc.sgml">
  49. <!entity xplang   SYSTEM "xplang.sgml">
  50. <!-- developer's guide -->
  51. <!entity arch-dev SYSTEM "arch-dev.sgml">
  52. <!entity biblio   SYSTEM "biblio.sgml">
  53. <!entity bki      SYSTEM "bki.sgml">
  54. <!entity compiler SYSTEM "compiler.sgml">
  55. <!entity contacts SYSTEM "contacts.sgml">
  56. <!entity cvs      SYSTEM "cvs.sgml">
  57. <!entity docguide SYSTEM "docguide.sgml">
  58. <!entity geqo     SYSTEM "geqo.sgml">
  59. <!entity options  SYSTEM "pg_options.sgml">
  60. <!entity page     SYSTEM "page.sgml">
  61. <!entity protocol SYSTEM "protocol.sgml">
  62. <!entity signals  SYSTEM "signals.sgml">
  63. ]>
  64. <book id="programmer">
  65. <!-- Title information -->
  66.  <title>PostgreSQL Programmer's Guide</title>
  67.  <bookinfo>
  68.   <releaseinfo>Covering v6.5 for general release</releaseinfo>
  69.   <bookbiblio>
  70.    <authorgroup>
  71.     <corpauthor>The PostgreSQL Development Team</corpauthor>
  72.    </authorgroup>
  73. <!-- editor in authorgroup is not supported
  74.     <AuthorGroup>
  75. -->
  76.    <editor>
  77.     <firstname>Thomas</firstname>
  78.     <surname>Lockhart</surname>
  79.     <affiliation>
  80.      <orgname>Caltech/JPL</orgname>
  81.     </affiliation>
  82.    </editor>
  83. <!--
  84.     </AuthorGroup>
  85. -->
  86.  
  87. <!--
  88.     <AuthorInitials>TGL</AuthorInitials>
  89. -->
  90.    <date>(last updated 1999-06-19)</date>
  91.   </bookbiblio>
  92.   <legalnotice>
  93.    <para>
  94.     <productname>PostgreSQL</productname> is Copyright &copy; 1996-9
  95.     by the Postgres Global Development Group.
  96.    </para>
  97.   </legalnotice>
  98.  </bookinfo>
  99. <!--
  100. <TOC> </TOC>
  101. <LOT> </LOT>
  102. -->
  103. <!--
  104. <Dedication>
  105. <Para>
  106. Your name here...
  107. </Para>
  108. </Dedication>
  109. -->
  110.  <preface id="preface">
  111.   <title>Summary</title>
  112.   <para>
  113.    <productname>Postgres</productname>, 
  114.    developed originally in the UC Berkeley Computer Science Department,
  115.    pioneered many of the object-relational concepts
  116.    now becoming available in some commercial databases.
  117.    It provides SQL92/SQL3 language support,
  118.    transaction integrity, and type extensibility.
  119.    <productname>PostgreSQL</productname> is a public-domain, 
  120.    open source descendant of this original Berkeley code.
  121.   </para>
  122.  </preface>
  123.   &intro-pg;
  124.   &arch-pg;
  125.   &extend;
  126.   &xfunc;
  127.   &xtypes;
  128.   &xoper;
  129.   &xaggr;
  130.   &rules;
  131.   &xindex;
  132.   &gist;
  133.   &xplang;
  134.   &dfunc;
  135. <!-- reference -->
  136. <!--
  137. The func-ref chapter is not currently useful.
  138. Disable it until we put in some info.
  139. - thomas 1998-10-27
  140. &func-ref;
  141. -->
  142.   &trigger;
  143.   &spi;
  144.   &lobj;
  145.   &libpq;
  146.   &libpqpp;
  147.   &libpgtcl;
  148.   &ecpg;
  149.   &odbc;
  150.   &jdbc;
  151.  
  152. <!-- development -->
  153.  
  154.   &arch-dev; 
  155.   &options;
  156.   &geqo;
  157.   &protocol;
  158.   &signals;
  159.   &compiler;
  160.   &bki;
  161.   &page;
  162. <!-- appendices -->
  163.   &cvs;
  164.   &docguide;
  165. <!--
  166. &contacts;
  167. -->
  168.   &biblio;
  169. <!--
  170. <index id="index">
  171. </index>
  172. -->
  173. </book>
  174. <!-- Keep this comment at the end of the file
  175. Local variables:
  176. mode: sgml
  177. sgml-omittag:nil
  178. sgml-shorttag:t
  179. sgml-minimize-attributes:nil
  180. sgml-always-quote-attributes:t
  181. sgml-indent-step:1
  182. sgml-indent-data:t
  183. sgml-parent-document:nil
  184. sgml-default-dtd-file:"./reference.ced"
  185. sgml-exposed-tags:nil
  186. sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
  187. sgml-local-ecat-files:nil
  188. End:
  189. -->