postgresql/doc/src/sgml/external-projects.sgml

201 lines
5.6 KiB
Plaintext
Raw Normal View History

<!-- $PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.10 2006/03/10 19:10:47 momjian Exp $ -->
<appendix id="external-projects">
<title>External Projects</title>
<para>
2004-12-03 07:30:40 +01:00
<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
2004-12-28 23:47:15 +01:00
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
2004-12-03 07:30:40 +01:00
around looking for database enhancements to meet their needs.
2004-12-28 23:47:15 +01:00
This section describes some of the more popular externally
developed enhancements and guides you on how to find them.
</para>
2004-12-28 23:47:15 +01:00
<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
2004-12-28 23:47:15 +01:00
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>
2004-12-03 07:30:40 +01:00
<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
2004-12-03 07:30:40 +01:00
because it is tied to the server-side grammar so is very dependent
on the database version. All the other interfaces are independent
2004-12-03 07:30:40 +01:00
projects and must be installed separately.
</para>
<para>
2004-12-28 23:47:15 +01:00
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>
2004-12-28 23:47:15 +01:00
<term>pgjdbc</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
A <application>JDBC</> interface.
</para>
</listitem>
</varlistentry>
<varlistentry>
2004-12-28 23:47:15 +01:00
<term>Npgsql</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
<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>
2004-12-28 23:47:15 +01:00
<term>libpq++</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
An older <application>C++</> interface.
</para>
</listitem>
</varlistentry>
<varlistentry>
2004-12-28 23:47:15 +01:00
<term>pgperl</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
A <application>Perl</> interface with an <acronym>API</> similar
to <application>libpq</>.
</para>
</listitem>
</varlistentry>
<varlistentry>
2004-12-28 23:47:15 +01:00
<term>DBD-Pg</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
A <application>Perl</> interface that uses the
<acronym>DBD</>-standard <application>API</>.
</para>
</listitem>
</varlistentry>
<varlistentry>
2004-12-28 23:47:15 +01:00
<term>pgtclng</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
A newer version of the <application>Tcl</> interface.
</para>
</listitem>
</varlistentry>
<varlistentry>
2004-12-28 23:47:15 +01:00
<term>pgtcl</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
The original version of the <application>Tcl</> interface.
</para>
</listitem>
</varlistentry>
<varlistentry>
2004-12-28 23:47:15 +01:00
<term>PyGreSQL</term>
<listitem>
<para>
2004-12-28 23:47:15 +01:00
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
2004-12-13 19:05:10 +01:00
<filename>contrib/</> directory shipped with the source code
2004-12-03 07:18:12 +01:00
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,
2004-12-13 19:05:10 +01:00
<application>Slony-I</> is a popular master/slave replication solution
2004-12-28 23:47:15 +01:00
that is developed independently from the core project.
</para>
<para>
There are several administration tools available for
<productname>PostgreSQL</>. The most popular is
2004-12-13 19:05:10 +01:00
<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:
-->