aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/external-projects.sgml
blob: f27a59789c2198e86f28c874b133e1c10b01cf88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!--
$PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.9 2005/04/09 03:52:43 momjian Exp $
-->

 <appendix id="external-projects">
  <title>External Projects</title>

  <para>
   <productname>PostgreSQL</productname> is a complex software project,
   and managing it is difficult. We have found that many
   enhancements to <productname>PostgreSQL</productname> can be more
   efficiently developed separately from the core project. Separate
   projects can
   have their own developer teams, email lists, bug tracking,
   and release schedules. While their independence makes
   development easier, it makes users' jobs harder. They have to hunt
   around looking for database enhancements to meet their needs.
   This section describes some of the more popular externally
   developed enhancements and guides you on how to find them.
  </para>

  <para>
   Many <productname>PostgreSQL</productname>-related projects are
   hosted at either 
   <ulink url="http://gborg.postgresql.org"><productname>GBorg</></ulink>
   or <ulink url="http://pgfoundry.org"><productname>pgFoundry</></ulink>.
   There are other <productname>PostgreSQL</productname>-related projects that are hosted
   elsewhere, but you will have to do an Internet search to find them.
  </para>

 <sect1 id="external-interfaces">
  <title>Externally Developed Interfaces</title>

  <indexterm>
   <primary>interfaces</primary>
  </indexterm>

  <para>
   <productname>PostgreSQL</productname> includes very few interfaces
   with the base distribution. <application>libpq</> is packaged because
   it is the primary <application>C</> interface and many other
   interfaces are built on top of it. <application>ecpg</> is packaged
   because it is tied to the server-side grammar so is very dependent
   on the database version. All the other interfaces are independent
   projects and must be installed separately.
  </para>

  <para>
   Some of the more popular interfaces are:

   <variablelist>
    <varlistentry>
     <term>psqlODBC</term>
     <listitem>
      <para>
       This is the most common interface for <application>Windows</>
       applications.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>pgjdbc</term>
     <listitem>
      <para>
       A <application>JDBC</> interface.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>Npgsql</term>
     <listitem>
      <para>
       <application>.Net</> interface for more recent
       <application>Windows</> applications.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>libpqxx</term>
     <listitem>
      <para>
       A newer <application>C++</> interface.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>libpq++</term>
     <listitem>
      <para>
       An older <application>C++</> interface.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>pgperl</term>
     <listitem>
      <para>
       A <application>Perl</> interface with an <acronym>API</> similar
       to <application>libpq</>.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>DBD-Pg</term>
     <listitem>
      <para>
       A <application>Perl</> interface that uses the
       <acronym>DBD</>-standard <application>API</>.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>pgtclng</term>
     <listitem>
      <para>
       A newer version of the <application>Tcl</> interface.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>pgtcl</term>
     <listitem>
      <para>
       The original version of the <application>Tcl</> interface.
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
     <term>PyGreSQL</term>
     <listitem>
      <para>
       A <application>Python</> interface library.
      </para>
     </listitem>
    </varlistentry>

   </variablelist>

   All of these can be found at
   <ulink url="http://gborg.postgresql.org"><productname>GBorg</></ulink>
   or <ulink url="http://pgfoundry.org"><productname>pgFoundry</></ulink>.
   </para>

 </sect1>
 
 <sect1 id="external-extensions">
 <title>Extensions</title>

  <indexterm>
   <primary>extensions</primary>
  </indexterm>

  <para>
   <productname>PostgreSQL</> was designed from the start to be
   extensible. For this reason, extensions loaded into the database can
   function just like features that are packaged with the database. The
   <filename>contrib/</> directory shipped with the source code
   contains a large number of extensions. The <filename>README</> file
   in that directory contains a summary. They include conversion tools,
   full-text indexing, <acronym>XML</> tools, and additional data types
   and indexing methods. Other extensions are developed independently,
   like <application>PostGIS</>. Even <application>PostgreSQL</>
   replication solutions are developed externally. For example,
   <application>Slony-I</> is a popular master/slave replication solution
   that is developed independently from the core project.
  </para>

  <para>
   There are several administration tools available for
   <productname>PostgreSQL</>. The most popular is
   <application>pgAdmin</>, and there are several commercially
   available ones.
  </para> 

 </sect1>
</appendix>

<!-- Keep this comment at the end of the file
Local variables:
mode:sgml
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"./reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:("/usr/lib/sgml/catalog")
sgml-local-ecat-files:nil
End:
-->