I'm sure this has a very simple solution, but I've exhausted my resources. I need to insert a bunch of WideString variables which may contain #0 into a NVARCHAR(1024) column in MSSQL2k8. #0 is treated as the string terminator somewhere in the transition... So, when I store #6'r'#0'abc', only #6'r' is stored. I'm using TADOQuery. What can I do about this?
Here's the code I use:
var
S: string;
begin
S := #6'r'#0'abc';
ADOQuery1.Append;
ADOQuery1S.Value := S;
{ At this point, S = #6'r'#0'abc' and ADOQuery1S.Value = #6'r';}
ADOQuery1.Post;
end;