Params for Oracle XE

The official tester's forum for ZeosLib 7.1. Ask for help, post proposals or solutions.
Post Reply
cahaya
Fresh Boarder
Fresh Boarder
Posts: 1
Joined: 30.11.2014, 16:40

Params for Oracle XE

Post by cahaya »

Hi Zeos Team,

I try zeos 7.1.4 stable version, database Oracle XE 11g, Delphi 7.
I set TZconnection protocol to oracle.

Code: Select all

With QuPassword Do
Begin
       Close;
       Parambyname('USERNAME').value:=edUsername.text;
       Parambyname('PASSWORD').value:=edPassword.text;
       Open;
       Result:=Not IsEmpty;
End;
QuPassword is TZReadOnlyQuery. The result is always empty but the fact there is a record.
When I change where condition in Sql statement like "where username='scott' and password='tiger', it gives a result.

Thank you for help.
Post Reply