1
vote
String truncation error in Delphi DBExpress/Firebird paramatised queries
l_input := copy(l_input,**0**,fieldLength-1);
You can't copy substring from position 0!
Try this:
l_input := LeftStr(l_input, fieldLength);
…
