When I go to install the Delphi Zeos XE6, gives the following error:
[dcc32 Error] ZDbcResultSet.pas(562): E2029 '.' expected but identifier 'AnsiStrComp' found
The ZDbcResultSet.pas have declared the function that gives the error:
function CompareRawByteString(const V1, V2): Integer;
begin
Result := {$IFDEF WITH_ANSISTRCOMP_DEPRECATED}AnsiStrings{$ENDIF}
AnsiStrComp(PAnsiChar(TZVariant(V1).VRawByteString), PAnsiChar(TZVariant(V2).VRawByteString));
end;
Attached image...
Problem ZDbcResultSet
-
- Fresh Boarder
- Posts: 6
- Joined: 12.09.2014, 20:09
Problem ZDbcResultSet
You do not have the required permissions to view the files attached to this post.
Re: Problem ZDbcResultSet
@tamarozirafael, @EgonHugeist,
Missing dot after {$IFDEF WITH_ANSISTRCOMP_DEPRECATED}AnsiStrings <==
Michal
Missing dot after {$IFDEF WITH_ANSISTRCOMP_DEPRECATED}AnsiStrings <==
Michal
- EgonHugeist
- Zeos Project Manager
- Posts: 1936
- Joined: 31.03.2011, 22:38
Re: Problem ZDbcResultSet
Thank guys for the note.
Patch done R3330 \testing-7.2 (SVN)
Can you test it?
Patch done R3330 \testing-7.2 (SVN)
Can you test it?
Best regards, Michael
You want to help? http://zeoslib.sourceforge.net/viewtopic.php?f=4&t=3671
You found a (possible) bug? Use the new bugtracker dude! http://sourceforge.net/p/zeoslib/tickets/
You want to help? http://zeoslib.sourceforge.net/viewtopic.php?f=4&t=3671
You found a (possible) bug? Use the new bugtracker dude! http://sourceforge.net/p/zeoslib/tickets/
Re: Problem ZDbcResultSet
@EgonHugeist,
Now (R3330) Delphi XE7 trial compiles.
Michal
Now (R3330) Delphi XE7 trial compiles.
Michal
-
- Fresh Boarder
- Posts: 6
- Joined: 12.09.2014, 20:09
Re: Problem ZDbcResultSet
Perfect. solved. Thanks.