get the following error (just downloaded the latest sdac and mydac)
---------------------------
Debugger Exception Notification
---------------------------
Project Speakers.exe raised exception class EOLEDBError with message 'Requested conversion is not supported.
Parameter[8] :SpkrBio - invalid Value (Status = 2h).'.
---------------------------
Break Continue Help
---------------------------
using the following
DestTable.Fields.Assign(SourceTable.Fields);
DestTable is TMSQuery and SourceTable is a TTable (Paradox)
the field is a M10 in paradox and NTEXT in SQLServer (2000).
works if the field is null but as soon as there is data in it, the
error pops up.
it works if i use
if SourceTable.Fields.DataType ftMemo then
begin
DestTable.Fields.Assign(SourceTable.Fields);
end else
begin
DestTable.Fields.AsString := SourceTable.Fields.AsString;
end;
thanks
Error with Memo Field
-
Challenger
- Devart Team
- Posts: 925
- Joined: Thu 17 Nov 2005 10:53