Thread: PostgreSql embedded available?

PostgreSql embedded available?

From
"Austin Winstanley"
Date:
Is there a version of PostgreSql that can be embedded with an application?

I have a Mono application and when I deploy it, I would like to deploy a postgresql database with it, but embedded, so the end user doesn't have to install postgresql seperately. Is this possible?

--
Thanks,
Austin Winstanley
Tradelogic Software Group

Re: PostgreSql embedded available?

From
Scott Marlowe
Date:
On Tue, 2007-05-08 at 13:26, Austin Winstanley wrote:
> Is there a version of PostgreSql that can be embedded with an
> application?
>
> I have a Mono application and when I deploy it, I would like to deploy
> a postgresql database with it, but embedded, so the end user doesn't
> have to install postgresql seperately. Is this possible?

Nope, and it's not real likely to happen.  Take a look at sqllite.

Re: PostgreSql embedded available?

From
Tino Wildenhain
Date:
Austin Winstanley schrieb:
> Is there a version of PostgreSql that can be embedded with an application?
>
> I have a Mono application and when I deploy it, I would like to deploy a
> postgresql database with it, but embedded, so the end user doesn't have
> to install postgresql seperately. Is this possible?

Last time I saw a box with Postgresql embedded it was next to a box
with Oracle embedded... ;)

Re: PostgreSql embedded available?

From
Rich Shepard
Date:
On Tue, 8 May 2007, Scott Marlowe wrote:

>> Is there a version of PostgreSql that can be embedded with an
>> application?

> Nope, and it's not real likely to happen.  Take a look at sqllite.

   Yes, SQLite (http://www.sqlite.org/) is the way to go for embedded RDBMS.
Syntax is close to that of postgres, and it's available for use in any
application. Great product when you need to incorporate an invisible data
storage facility.

Rich

--
Richard B. Shepard, Ph.D.               |    The Environmental Permitting
Applied Ecosystem Services, Inc.        |          Accelerator(TM)
<http://www.appl-ecosys.com>     Voice: 503-667-4517      Fax: 503-667-8863

Re: PostgreSql embedded available?

From
Björn Lundin
Date:

8 maj 2007 kl. 21.07 skrev Rich Shepard:

On Tue, 8 May 2007, Scott Marlowe wrote:

Is there a version of PostgreSql that can be embedded with an
application?

Nope, and it's not real likely to happen.  Take a look at sqllite.

  Yes, SQLite (http://www.sqlite.org/) is the way to go for embedded RDBMS.

or perhaps Mimer <http://www.mimer.com/>

/Björn

Björn Lundin

Re: PostgreSql embedded available?

From
"Austin Winstanley"
Date:
Thanks for the replies and help everyone...



On 5/8/07, Rich Shepard <rshepard@appl-ecosys.com> wrote:
On Tue, 8 May 2007, Scott Marlowe wrote:

>> Is there a version of PostgreSql that can be embedded with an
>> application?

> Nope, and it's not real likely to happen.  Take a look at sqllite.

   Yes, SQLite (http://www.sqlite.org/) is the way to go for embedded RDBMS.
Syntax is close to that of postgres, and it's available for use in any
application. Great product when you need to incorporate an invisible data
storage facility.

Rich

--
Richard B. Shepard, Ph.D.               |    The Environmental Permitting
Applied Ecosystem Services, Inc.        |          Accelerator(TM)
<http://www.appl-ecosys.com>     Voice: 503-667-4517      Fax: 503-667-8863

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend



--
Thanks,
Austin Winstanley
Tradelogic Software Group