Problems with Access and floatingpoint values - Mailing list pgsql-odbc

From DI Hasenöhrl
Subject Problems with Access and floatingpoint values
Date
Msg-id 005301c0aeee$a9438d80$01011eac@irina
Whole thread Raw
List pgsql-odbc
hello all,
 
I use postgresql 7.0.2 via ODBC 6.5 as backend and MsAccess 97 as frontend.
My problem is, that I can't insert floatingpoint values.
I tried to solve this problem with float4 and numeric(6,2), but I get the following errors:
  • create table test_numeric(
                                           nr        serial primary key,
                                           price    numeric(6,2),
                                           name    varchar(30),
                                           t_updte  timestamp default current_timestamp);

    by inserting a new value as price, the new entry is shown as deleted in my msaccess form
  • create table test_float(
                                     nr        serial primary key,
                                     price    float4,
                                     name    varchar(30),
                                     t_updte timestamp default current_timestamp);

    for inserts I use MsAccess forms and I get different problems:
    by inserting an integer f.e. 1 to field price, I can see and update the new entry
     
    by updating 1 to 1,2 then I can't update field name. Error: another user has changed my entry in the meantime
    by inserting 1,2 to price, the new entry is shown as deleted

Please, can anyone help me to solve my problem
please contact me at i.hasenoehrl@aon.at if you can help me!

Many thanks in advance
 
Irina Hasenöhrl
i.hasenoehrl@aon.at

pgsql-odbc by date:

Previous
From: Schollum@t-online.de (Norbert Schollum)
Date:
Subject: Re: Re: Problems with Acess
Next
From: "Michael Moehle"
Date:
Subject: AW: Re: Problems with Acess