Dear all
I'm using Datasnap and I try to use your components with Unicode and Firebird.
Now my first try to save data with a Blob Field I get following Error Message
SQL error code = -303
feature is not supported
BLOB and array data types are not supported for move operation
Can you tell me what this means? Does this message come from your components?
SQL Error Code 303 - Feature not supported on Blob
Unicode is supported when DataType of the parameter is ftWideMemo. You can use the following code:
You can also set the UnicodeMemoParameters global variable from the IBC unit to True. In this case you can use AsMemo for unicode data.
Code: Select all
IBCQuery.ParamByName('a').DataType := ftWideMemo;
IBCQuery.ParamByName('a').Value := 'Value';