mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Stamp 7.4.1.
Update 7.4.1 FAQ's to current.
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
alink="#0000ff">
|
||||
<H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
|
||||
|
||||
<P>Last updated: Sat Nov 15 23:41:03 EST 2003</P>
|
||||
<P>Last updated: Sat Nov 29 23:54:03 EST 2003</P>
|
||||
|
||||
<P>Current maintainer: Bruce Momjian (<A href=
|
||||
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
|
||||
@ -326,7 +326,7 @@
|
||||
|
||||
<H4><A name="1.7">1.7</A>) What is the latest release?</H4>
|
||||
|
||||
<P>The latest release of PostgreSQL is version 7.3.4.</P>
|
||||
<P>The latest release of PostgreSQL is version 7.4.</P>
|
||||
|
||||
<P>We plan to have major releases every six to eight months.</P>
|
||||
|
||||
@ -554,8 +554,7 @@
|
||||
<P>Yes, there are several graphical interfaces to PostgreSQL available.
|
||||
These include PgAccess <a href="http://www.pgaccess.org">
|
||||
http://www.pgaccess.org</a>), PgAdmin III (<a
|
||||
href="http://www.pgadmin.org">http://www.pgadmin.org</a>,
|
||||
Win32-only), RHDB Admin (<a
|
||||
href="http://www.pgadmin.org">http://www.pgadmin.org</a>, RHDB Admin (<a
|
||||
href="http://sources.redhat.com/rhdb/">http://sources.redhat.com/rhdb/
|
||||
</a>) and Rekall (<a href="http://www.thekompany.com/products/rekall/">
|
||||
http://www.thekompany.com/products/rekall/</a>, proprietary). There is
|
||||
@ -1102,7 +1101,7 @@ BYTEA bytea variable-length byte array (null-byte safe)
|
||||
serial/auto-incrementing field?</H4>
|
||||
|
||||
<P>PostgreSQL supports a <SMALL>SERIAL</SMALL> data type. It
|
||||
auto-creates a sequence and index on the column. For example,
|
||||
auto-creates a sequence. For example,
|
||||
this:</P>
|
||||
<PRE>
|
||||
CREATE TABLE person (
|
||||
@ -1118,7 +1117,6 @@ BYTEA bytea variable-length byte array (null-byte safe)
|
||||
id INT4 NOT NULL DEFAULT nextval('person_id_seq'),
|
||||
name TEXT
|
||||
);
|
||||
CREATE UNIQUE INDEX person_id_key ON person ( id );
|
||||
</PRE>
|
||||
|
||||
See the <I>create_sequence</I> manual page for more information
|
||||
|
@ -12,7 +12,7 @@
|
||||
<H1>Developer's Frequently Asked Questions (FAQ) for
|
||||
PostgreSQL</H1>
|
||||
|
||||
<P>Last updated: Wed Oct 29 21:40:18 EST 2003</P>
|
||||
<P>Last updated: Sat Nov 29 23:56:43 EST 2003</P>
|
||||
|
||||
<P>Current maintainer: Bruce Momjian (<A href=
|
||||
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
|
||||
@ -89,7 +89,7 @@
|
||||
<B>What development environment (OS, system, compilers, etc) is
|
||||
required to develop code?</B>
|
||||
|
||||
<P><A href="http://developers.postgresql.org">Developers Corner</A> on the
|
||||
<P><A href="http://developer.postgresql.org">Developers Corner</A> on the
|
||||
website has links to this information. The distribution tarball
|
||||
itself includes all the extra tools and documents that go beyond a
|
||||
good Unix-like development environment. In general, a modern unix
|
||||
|
Reference in New Issue
Block a user