Re: Serial columns and ADO - Mailing list pgsql-odbc

From Dmitry Samokhin
Subject Re: Serial columns and ADO
Date
Msg-id ejjrgl$2bjg$1@news.hub.org
Whole thread Raw
In response to Serial columns and ADO  (Dmitry Samokhin <sdld@mail.ru>)
List pgsql-odbc
> OK try the snapshot dll.
> 0x2 Extra Opts option is no longer needed for the case.

>
> regards,
> Hiroshi Inoue

OK, 'SELECT 0' has been swept out.

> Also changed to SELECT NULL in case of failure.
What failure do you mean?

But there's still another problem. Let our table 't1' be initially empty and
the sequence reset to 1. Consider the following ADO operations:

  rs.AddNew
  rs("col2") = "Sample string"
  rs.Update
  MsgBox rs("col1")

  rs.AddNew
  rs("col1") = 2
  rs("col2") = "Sample string"
  rs.Update
  MsgBox rs("col1")

Look, the second insert operation sets the identity field explicitly. But
the driver still lets 'SELECT currval...' to pass. As a result, my explicit
value '2' is replaced by the currval()=1. Such distortion should be avoided
anyway.

Dmitry.



pgsql-odbc by date:

Previous
From: Jim Nasby
Date:
Subject: Re: Postgres 7.4 to Oracle 10g Migration with BLOBs
Next
From: "Dmitriy Ivanov"
Date:
Subject: Re: Serial columns and ADO