Re: Update-able View linked to Access - Mailing list pgsql-odbc

From Hiroshi Inoue
Subject Re: Update-able View linked to Access
Date
Msg-id 457E1889.2060305@tpf.co.jp
Whole thread Raw
In response to Re: Update-able View linked to Access  (Richard Broersma Jr <rabroersma@yahoo.com>)
Responses Re: Update-able View linked to Access  (Hiroshi Inoue <inoue@tpf.co.jp>)
List pgsql-odbc
Richard Broersma Jr wrote:
>> Please change the field name of B.ctid from hasbandctid to ctid.
>> The name should be "ctid" for the driver to detect the field is for versioning.
>> A.ctid isn't needed.
>
> It works now!  However, I have a question.  If I have a view with more than two joined tables will
> i need to reference the ctid from each table after the first update statement?

The ctid of the target table of the rule's last statement should be referenced.
For example, in your case the command

    UPDATE "public"."vhusband"
    SET    "name"=E'hello44',"tiesize"=52
    WHERE  "id" = 10
    AND    "ctid" = E'(0,47)'

is issued by MS Access.
The where condition "id" = 10 AND "ctid" = E'(0,47)' is added to
each statment in the rule when the command is executed.
So it's very siginificant that the contents of "id" and "ctid"
are not changed until the last statement is called.
Please note that the ctid field is modified autmatically when
the table is updated.

regards,
Hiroshi Inoue

pgsql-odbc by date:

Previous
From: Richard Broersma Jr
Date:
Subject: Re: Update-able View linked to Access
Next
From: Hiroshi Inoue
Date:
Subject: Re: Update-able View linked to Access