When I have TOraSession.Options.ConvertEOL = true, and I select from the table below using a TSmartQuery, the result dataset has extra spaces in the result.
I think that this option should not have an effect here. Is that right? It creates a problem when I want to re-insert the data, because then there are 3 characters worth of data when there should only be 2. I am aware of workarounds but this seems like a bug.
Thanks,
John
Code: Select all
CREATE TABLE AST_ADR_REGEL
(
NL CHAR(2 BYTE) NOT NULL,
LOG_MAND CHAR(2 BYTE) NOT NULL
);
Insert into AST_ADR_REGEL
(NL, LOG_MAND)
Values
('15', '01');
commit;