Problem ZDbcResultSet

The forum for ZeosLib 7.2 Report problems. Ask for help, post proposals for the new version and Zeoslib 7.2 features here. This is a forum that will be edited once the 7.2.x version goes into RC/stable!!

My personal intention for 7.2 is to speed up the internals as optimal a possible for all IDE's. Hope you can help?! Have fun with testing 7.2
Post Reply
tamarozirafael
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 12.09.2014, 20:09

Problem ZDbcResultSet

Post by tamarozirafael »

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...
You do not have the required permissions to view the files attached to this post.
miab3
Zeos Test Team
Zeos Test Team
Posts: 1310
Joined: 11.05.2012, 12:32
Location: Poland

Re: Problem ZDbcResultSet

Post by miab3 »

@tamarozirafael, @EgonHugeist,

Missing dot after {$IFDEF WITH_ANSISTRCOMP_DEPRECATED}AnsiStrings <==

Michal
User avatar
EgonHugeist
Zeos Project Manager
Zeos Project Manager
Posts: 1936
Joined: 31.03.2011, 22:38

Re: Problem ZDbcResultSet

Post by EgonHugeist »

Thank guys for the note.

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/

Image
miab3
Zeos Test Team
Zeos Test Team
Posts: 1310
Joined: 11.05.2012, 12:32
Location: Poland

Re: Problem ZDbcResultSet

Post by miab3 »

@EgonHugeist,

Now (R3330) Delphi XE7 trial compiles.

Michal
tamarozirafael
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: 12.09.2014, 20:09

Re: Problem ZDbcResultSet

Post by tamarozirafael »

Perfect. solved. Thanks.
Post Reply