Bug with data type text on postgres

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for PostgreSQL in Delphi and C++Builder
Post Reply
zrfisaac
Posts: 1
Joined: Wed 25 May 2022 19:31

Bug with data type text on postgres

Post by zrfisaac » Wed 25 May 2022 19:43

Hi!
When I create a new table

Code: Select all

CREATE TABLE IF NOT EXISTS public.SAMPLE
(
    NAME character varying(100) NOT NULL,
    VALUE text 
);
and then use the TSimpleDataSet component with the new drive version
the value from field "VALUE" is written with the value from "NAME"
this only happens because the field is text and delphi recognize as widestring
this works fine on the version 2.1.3 but crash on the version 5.1.1

evgeniym
Devart Team
Posts: 103
Joined: Thu 13 May 2021 07:08

Re: Bug with data type text on postgres

Post by evgeniym » Fri 27 May 2022 10:03

Hi!

Unfortunately, we were unable to reproduce the issue.
Kindly send us an sample that uses dbExpress Driver for PostgreSQL and demonstrates incorrect behavior.
Please use the form on our website to send it: https://devart.com/company/contactform.html

Regards,
Evgeniy

Post Reply