Re: Is there a gui front end for this wonderful db program which works like MSAccess? - Mailing list pgsql-novice

From Richard Broersma Jr
Subject Re: Is there a gui front end for this wonderful db program which works like MSAccess?
Date
Msg-id 20060723211158.91551.qmail@web31808.mail.mud.yahoo.com
Whole thread Raw
In response to Is there a gui front end for this wonderful db program which works like MSAccess?  (Fred Frazelle <frazelle09@yahoo.com>)
List pgsql-novice
>> But the supposedly the automatic ID is not inserted and even
>> though i can insert data into the first row, the ID must be inserted by
>> hand. Don't know what to do.

Postgresql doesn't have an automatic ID is the sense that access does.  Postgresql uses a datatype
called serial.  It's default value is an automatically generated id.  However in access, when a
new record is "started" before it is inserted into a postgresql table, the automatic ID will
display as a blank field until you apply the changes.  Simply leave the blank field as a blank.
When you are finished with the new record and commit it the the postgresql table, the next value
will display.

>> Am waiting on OpenOffice to upgrade
>> Any ideas?

How about the odbc drive for postgresql for use with MS Access.  Then you can simply link
postgresql tables into your MS access project.
see the following link for the driver to download:
http://pgfoundry.org/projects/psqlodbc/
http://www.postgresql.org/download/

>> Access chokes or coughs at least acouple of times a week
>> and they say it's bec. we have too many userstrying to
>> access it at once (15 is too many?)

It depends, MS access does not lock single records it locks 4K page of the table.  This page can
contain many records.  So if person a is editing a record close to the one person b want to edit,
be will be prevented from editing becuase of the page lock.
For more information see:
http://www.developer.com/tech/article.php/721911



pgsql-novice by date:

Previous
From: "Andrew Hammond"
Date:
Subject: Re: Is there a gui front end for this wonderful db program which works like MSAccess?
Next
From: Fred Frazelle
Date:
Subject: Re: Is there a gui front end for this wonderful db program