Hi
I am using an ADO Parameter Object to insert some text into a memo datatype
in Access 2000. The ADO Command object which uses the Parameter Object
calls a Access 2000 query object. Example below:
PARAMETERS prmCommentDesc Memo;
INSERT INTO Comment ( Comment )
VALUES (prmCommentDesc);
However the parameter datatype - memo is not supported in query parameters
at the Access 2000 end. Does any know what datatype I should using instead
of memo in the above query example?
Regards
Craig