Hi,
Code:
//here 'name' is string field and i can write in the following way
QueryA.ParamByName('Name').AsString := QueryB.FieldByName('Name').AsString;
is it also possible to do the same for blob field similar to string/integer field?
Code:
//here NewID is Blob field
QueryA.ParamByName('NewID ').??? :=QueryB.FieldByName('NewID').???; //here how to define the datatype for Blob , i have tried with As TblobField but it does not work
need your suggestion