Re: SQLite-PostgreSQL comparison

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Cc: Andre Majorel <aym-2lqsgp(at)teaser(dot)fr>
Subject: Re: SQLite-PostgreSQL comparison
Date: 2011-06-05 18:27:52
Message-ID: 201106051127.52970.adrian.klaver@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sunday, June 05, 2011 8:17:30 am Andre Majorel wrote:
> Does anyone know of a document comparing SQLite and PostgreSQL ?
>

As part of a more general comparison:
http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems

The thumbnail version based on my experiences:

1) File layout.
SQLite is single file, embeddable.
Postgres is multi file client/server architecture.

2) Data typing
SQLite uses manifest typing(adaptative typing)
Postgres has strict typing.

3) SQL
SQLite, especially later versions has fairly extensive SQL support given its
size. The one area I find lacking is ALTER TABLE operations
Postgres has extensive SQL support. There are occasional discussions on just how
extensive.

4) Licensing
SQLite is in the Public Domain
Postgres license is here:
http://wiki.postgresql.org/wiki/FAQ#What_is_the_license_of_PostgreSQL.3F
It is derived from the BSD license.

> Thanks in advance.

--
Adrian Klaver
adrian(dot)klaver(at)gmail(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Joshua D. Drake 2011-06-05 19:01:25 Re: EnterpriseDB-xDBReplicationServer java process on OS X.
Previous Message Alban Hertroys 2011-06-05 16:54:34 Re: SQLite-PostgreSQL comparison