Re: PostgreSQL, ODBC, Access

From: <davidb(at)vectormath(dot)com>
To: "Jeffrey A(dot) Rhines" <jrhines(at)email(dot)com>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: PostgreSQL, ODBC, Access
Date: 2000-07-24 17:29:23
Message-ID: 000c01bff594$b7401b60$0602010a@bullwinkle.vectormath
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Jeffrey,

If you open a form that is bound to a table (or bound to a query that is
bound to a table) that is one database connection. If you then script
database updates from the form
(e.g.:
Dim dbs As Database
Set dbs=CurrentDB
dbs.Execute("UPDATE tbl_blah SET szBlah = 'blah' WHERE nBlahID = 5")
)
then you are opening a second database connection. This is seen by Access
as two users accessing the same record. I don't know if this is your
problem, but it will cause your symptoms.

David Boerwinkle

-----Original Message-----
From: Jeffrey A. Rhines <jrhines(at)email(dot)com>
To: pgsql-general(at)postgresql(dot)org <pgsql-general(at)postgresql(dot)org>
Date: Monday, July 24, 2000 11:21 AM
Subject: [GENERAL] PostgreSQL, ODBC, Access

Hello All,

Here's a bothersome issue: I've got the most recent versions of
Postgres, ODBC client for Win32, and Access 97. My client can enter new
records fine via a linked table. However, when she goes back to add
data to a column, she gets the following error:

message box title: "Write Conflict"
description: "This record has been changed by another user since you
started editing it. If you save the record, you will overwrite the
changes the other user made."
buttons: "Copy to Clipboard" and "Drop Changes".

She is the only person using the database at the time. The column type
doesn't matter, either. Does anyone know what causes this?

Best Regards,
Jeff Rhines

Browse pgsql-general by date

  From Date Subject
Next Message Jeffrey A. Rhines 2000-07-24 17:43:43 Web front-end
Previous Message Kyle 2000-07-24 16:48:35 Re: Problem with inserting newlines and ' characters