Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 93e1795

Browse files
committed
Merge two Interfaces FAQ items into one.
1 parent a3b7d45 commit 93e1795

File tree

2 files changed

+26
-79
lines changed

2 files changed

+26
-79
lines changed

doc/FAQ

+11-31
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Frequently Asked Questions (FAQ) for PostgreSQL
33

4-
Last updated: Sat Jan 29 21:21:25 EST 2005
4+
Last updated: Sat Jan 29 22:51:43 EST 2005
55

66
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
77

@@ -30,10 +30,9 @@
3030

3131
User Client Questions
3232

33-
2.1) Are there ODBC drivers for PostgreSQL?
33+
2.1) What interfaces are available for PostgreSQL?
3434
2.2) What tools are available for using PostgreSQL with Web pages?
3535
2.3) Does PostgreSQL have a graphical user interface?
36-
2.4) What languages are available to communicate with PostgreSQL?
3736

3837
Administrative Questions
3938

@@ -378,21 +377,17 @@
378377

379378
User Client Questions
380379

381-
2.1) Are there ODBC drivers for PostgreSQL?
380+
2.1) What interfaces are available for PostgreSQL?
382381

383-
There are two ODBC drivers available, PsqlODBC and OpenLink ODBC.
382+
The PostgreSQL install includes only the C and embedded C interfaces.
383+
All other interfaces are independent projects that are downloaded
384+
separately; being separate allows them to have their own release
385+
schedule and development teams.
384386

385-
You can download PsqlODBC from
386-
http://gborg.postgresql.org/project/psqlodbc/projdisplay.php.
387-
388-
OpenLink ODBC can be gotten from http://www.openlinksw.com. It works
389-
with their standard ODBC client software so you'll have PostgreSQL
390-
ODBC available on every client platform they support (Win, Mac, Unix,
391-
VMS).
392-
393-
They will probably be selling this product to people who need
394-
commercial-quality support, but a freeware version will always be
395-
available. Please send questions to postgres95@openlink.co.uk.
387+
Some programming languages like PHP include an interface to
388+
PostgreSQL. Interfaces for languages like Perl, TCL, Python, and many
389+
others are available at http://gborg.postgresql.org in the
390+
Drivers/Interfaces section and via Internet search.
396391

397392
2.2) What tools are available for using PostgreSQL with Web pages?
398393

@@ -416,21 +411,6 @@
416411

417412
See http://techdocs.postgresql.org/guides/GUITools for a more detailed
418413
list.
419-
420-
2.4) What languages are able to communicate with PostgreSQL?
421-
422-
Most popular programming languages contain an interface to PostgreSQL.
423-
Check your programming language's list of extension modules.
424-
425-
The following interfaces are included in the PostgreSQL distribution:
426-
* C (libpq)
427-
* Embedded C (ecpg)
428-
* Java (jdbc)
429-
* Python (PyGreSQL)
430-
* TCL (libpgtcl)
431-
432-
Additional interfaces are available at http://gborg.postgresql.org in
433-
the Drivers/Interfaces section.
434414
_________________________________________________________________
435415

436416
Administrative Questions

doc/src/FAQ/FAQ.html

+15-48
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
alink="#0000ff">
1111
<H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
1212

13-
<P>Last updated: Sat Jan 29 21:21:25 EST 2005</P>
13+
<P>Last updated: Sat Jan 29 22:51:43 EST 2005</P>
1414

1515
<P>Current maintainer: Bruce Momjian (<A href=
1616
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
@@ -45,14 +45,12 @@ <H2 align="center">General Questions</H2>
4545

4646

4747
<H2 align="center">User Client Questions</H2>
48-
<A href="#2.1">2.1</A>) Are there <SMALL>ODBC</SMALL> drivers for
48+
<A href="#2.1">2.1</A>) What interfaces are available for
4949
PostgreSQL?<BR>
5050
<A href="#2.2">2.2</A>) What tools are available for using
5151
PostgreSQL with Web pages?<BR>
5252
<A href="#2.3">2.3</A>) Does PostgreSQL have a graphical user
5353
interface?<BR>
54-
<A href="#2.4">2.4</A>) What languages are available to
55-
communicate with PostgreSQL?<BR>
5654

5755

5856
<H2 align="center">Administrative Questions</H2>
@@ -492,26 +490,20 @@ <H4><A name="1.13">1.13</A>) How can I financially assist
492490

493491
<H2 align="center">User Client Questions</H2>
494492

495-
<H4><A name="2.1">2.1</A>) Are there <SMALL>ODBC</SMALL> drivers
496-
for PostgreSQL?</H4>
497-
498-
<P>There are two <SMALL>ODBC</SMALL> drivers available, PsqlODBC
499-
and OpenLink <SMALL>ODBC</SMALL>.</P>
500-
501-
<P>You can download PsqlODBC from <A href=
502-
"http://gborg.postgresql.org/project/psqlodbc/projdisplay.php">
503-
http://gborg.postgresql.org/project/psqlodbc/projdisplay.php</A>.</P>
493+
<H4><A name="2.1">2.1</A>) What interfaces are available for
494+
PostgreSQL?</H4>
504495

505-
<P>OpenLink <SMALL>ODBC</SMALL> can be gotten from <A href=
506-
"http://www.openlinksw.com/">http://www.openlinksw.com</A>. It
507-
works with their standard <SMALL>ODBC</SMALL> client software so
508-
you'll have PostgreSQL <SMALL>ODBC</SMALL> available on every
509-
client platform they support (Win, Mac, Unix, VMS).</P>
496+
<P>The PostgreSQL install includes only the <SMALL>C</SMALL> and embedded
497+
<SMALL>C</SMALL> interfaces. All other interfaces are independent projects
498+
that are downloaded separately; being separate allows them to have their
499+
own release schedule and development teams.</P>
510500

511-
<P>They will probably be selling this product to people who need
512-
commercial-quality support, but a freeware version will always be
513-
available. Please send questions to <A href=
514-
"mailto:postgres95@openlink.co.uk">postgres95@openlink.co.uk</A>.</P>
501+
<P>Some programming languages like <SMALL>PHP</SMALL> include an
502+
interface to PostgreSQL. Interfaces for languages like Perl,
503+
<SMALL>TCL</SMALL>, Python, and many others are available at
504+
<a href="http://gborg.postgresql.org">http://gborg.postgresql.org</A>
505+
in the <I>Drivers/Interfaces</I> section and via Internet search.
506+
</P>
515507

516508
<H4><A name="2.2">2.2</A>) What tools are available for using
517509
PostgreSQL with Web pages?</H4>
@@ -541,34 +533,9 @@ <H4><A name="2.3">2.3</A>) Does PostgreSQL have a graphical user
541533

542534
<P>See <a href="http://techdocs.postgresql.org/guides/GUITools">http://techdocs.postgresql.org/guides/GUITools</a> for a more detailed list.</P>
543535

544-
<H4><A name="2.4">2.4</A>) What languages are able to communicate with
545-
PostgreSQL?</H4>
546-
547-
<P>Most popular programming languages contain an interface to
548-
PostgreSQL. Check your programming language's list of extension
549-
modules.</P>
550-
551-
<P>The following interfaces are included in the PostgreSQL
552-
distribution:</P>
553-
554-
<UL>
555-
<LI>C (libpq)</LI>
556-
557-
<LI>Embedded C (ecpg)</LI>
558-
559-
<LI>Java (jdbc)</LI>
560-
561-
<LI>Python (PyGreSQL)</LI>
562-
563-
<LI>TCL (libpgtcl)</LI>
564-
565-
</UL>
566-
<P>Additional interfaces are available at
567-
<a href="http://gborg.postgresql.org">http://gborg.postgresql.org</A>
568-
in the <I>Drivers/Interfaces</I> section.
569-
</P>
570536
<HR>
571537

538+
572539
<H2 align="center">Administrative Questions</H2>
573540

574541
<H4><A name="3.1">3.1</A>) How do I install PostgreSQL somewhere

0 commit comments

Comments
 (0)