Problems with Access and floatingpoint values

Поиск
Список
Период
Сортировка
От DI Hasenöhrl
Тема Problems with Access and floatingpoint values
Дата
Msg-id 005301c0aeee$a9438d80$01011eac@irina
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Schollum@t-online.de (Norbert Schollum)
Дата:
Сообщение: Re: Re: Problems with Acess
Следующее
От: "Michael Moehle"
Дата:
Сообщение: AW: Re: Problems with Acess