Diman
Admin
 Admin
| Posts: 1461 |  | Karma: 18 |
|
Re:MsAccess with WideString?
|
|
Posted: 2007/10/24 07:23 |
|
|
|
|
Hello
If you need all ftString to be ftWideString, then do following:
with ADConnection1.FormatOptions do begin
OwnMapRules := True;
with MapRules.Add do begin
SourceDataType := dtAnsiString;
TargetDataType := dtwideString;
end;
end;
|
Regards,
Dmitry
|
|