Обсуждение: Problem with DELETE instruction and ODBC

Поиск
Список
Период
Сортировка

Problem with DELETE instruction and ODBC

От
Nicolas GIMMILLARO
Дата:
Sine I've installed psqlodbc version 07.03.0200 I have error while
trying to delete records from empty tables.

"DELETE FROM test" works if the table contains records, but if it is
empty, MSACCESS return "no current record" (direct sql query)

The same query in delphi (4 and 7) has the same behavior. No error if
the table contains records, and "Erreur de séquence de la fonction" (in
french, sorry) if the table is empty.

Structure of the "test" table :

CREATE TABLE test (
    id integer NOT NULL,
    attrib character varying(250)
);



Versions affected :
PostgreSQL 7.4.2 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.2.3
PostgreSQL 7.3.6 on i686-pc-linux-gnu, compiled by GCC 2.7.2.3

Any idea ?

Nicolas