diff options
author | Bruce Momjian | 2008-04-24 19:58:32 +0000 |
---|---|---|
committer | Bruce Momjian | 2008-04-24 19:58:32 +0000 |
commit | 830f276b2a685194b6eedea0fc1a4c7bbef882a1 (patch) | |
tree | 8ef790ec1beaef9aabb34734abf1a053861c5e98 /doc/FAQ | |
parent | cc3c9e1b2916ad3dca54f6150ae5658fcbae5d37 (diff) |
Add embedded usage mention to FAQ, per Greg Smith.
Diffstat (limited to 'doc/FAQ')
-rw-r--r-- | doc/FAQ | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1,7 +1,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL - Last updated: Wed Apr 16 16:57:09 EDT 2008 + Last updated: Thu Apr 24 15:58:18 EDT 2008 Current maintainer: Bruce Momjian (bruce@momjian.us) @@ -26,7 +26,8 @@ 1.10) What documentation is available? 1.11) How can I learn SQL? 1.12) How do I submit a patch or join the development team? - 1.13) How does PostgreSQL compare to other DBMSs? + 1.13) How does PostgreSQL compare to other DBMSs? Can PostgreSQL be + embedded? 1.14) Will PostgreSQL handle recent daylight saving time changes in various countries? 1.15) How do I unsubscribe from the PostgreSQL email lists? How do I @@ -288,7 +289,7 @@ See the Developer's FAQ. - 1.13) How does PostgreSQL compare to other DBMSs? + 1.13) How does PostgreSQL compare to other DBMSs? Can PostgreSQL be embedded? There are several ways of measuring software: features, performance, reliability, support, and price. @@ -330,6 +331,13 @@ You can add our code to your product with no limitations, except those outlined in our BSD-style license stated above. + PostgreSQL is designed as a client/server architecture, which requires + separate processes for each client and server, and various helper + processes. Many embedded architectures can support such requirements. + However, if your embedded architecture requires the database server to + run inside the application process, Postgres cannot be used and a + lighter-weight database solution should be selected. + 1.14) Will PostgreSQL handle recent daylight saving time changes in various countries? |