stefanoaltissimo
Member
Hello,
i have a problem using TOeracleQuery
I am using delphi 7 in windows 7 32 bit
The problem i have is that it seems that for every field fullfilled, my program loose the last character. For example if
i have a field like this
emplName NVARCHAR2(8) not null
and in PL/SQL Developer i edit and see a value like this
'12345678'
with a code similar to this
QryLookUp := TOracleQuery.Create(Application);
QryLookUp.Session := DBSt3k;
QryLookUp.SQL.Text := 'select * from employees';
QryLookUp.Execute;
trnOut := QryLookUp.Field('emplName');
i get a field value like this
'1234567'
the '8' is missed!
Where is the problem?
Thank you for help
Stefano Altissimo
i have a problem using TOeracleQuery
I am using delphi 7 in windows 7 32 bit
The problem i have is that it seems that for every field fullfilled, my program loose the last character. For example if
i have a field like this
emplName NVARCHAR2(8) not null
and in PL/SQL Developer i edit and see a value like this
'12345678'
with a code similar to this
QryLookUp := TOracleQuery.Create(Application);
QryLookUp.Session := DBSt3k;
QryLookUp.SQL.Text := 'select * from employees';
QryLookUp.Execute;
trnOut := QryLookUp.Field('emplName');
i get a field value like this
'1234567'
the '8' is missed!
Where is the problem?
Thank you for help
Stefano Altissimo
Last edited: