Hello,
I'm testing an application with dbexsda ver. 4.45.0.13 using Delphi Win 32 2007 end Microsoft SQL Server 2008 Express.
The field named "Testata" is a varchar(25).
When I try to update the field with a string containing more then 22 chars I receive en error like you can see in the following monitor output.
Begin: user "Sto", server "SQL2008"
update Venduto set
Testata = ?
where
IDVendita = ?
:1 (String[23],IN) = '12345678901234567890123'
:2 (Int32,IN) = 50
String or binary data would be truncated.
The statement has been terminated.
select
IDVendita
from Venduto
where
IDVendita = ?
:1 (Int32,IN) = 50
Rollback: user "Sto", server "SQL2008"
Could you help me ?
Thanks,
Davide