Re: Read-only records with timestamp - Mailing list pgsql-odbc

From Hiroshi Inoue
Subject Re: Read-only records with timestamp
Date
Msg-id 3CCF29FF.C37060D6@tpf.co.jp
Whole thread Raw
In response to Read-only records with timestamp  (Popovics Attila <apopovics@interm.gtk.gau.hu>)
List pgsql-odbc
Popovics Attila wrote:
>
> Hi
> I have some tables with timestamp field
> (timestamp with time zone |  default now()).
> It worked well in 7.1.3, but in 7.2.1 the newly inserted records are
> read only through the odbc (MS Access, pgAdmin 1.2.0).
> I analized the log files and I found that:
> on update  or on delete the client sends string like this
> 'update .... set .... where ... and "idoppont" = '2002-04-26 14:05:17.44'::timestamp'
>
> but
>
> in plsql in same record
> the value of the field is  2002-04-26 14:05:17.440044+02

PostgreSQL's default timestamp is timestamp(6).
Access seems to handle timestamp up to timestamp(3)
though ODBC can handle up to timestamp(9).
Probably you have to use timestamp(n) (n<=3) instead
of default timestamp.

Hiroshi Inoue
    http://w2422.nsk.ne.jp/~inoue/

pgsql-odbc by date:

Previous
From: Kevin Ormond
Date:
Subject: ODBC Thread Safety
Next
From: Hiroshi Inoue
Date:
Subject: Re: Question about ODBC 3.0