UNIDAC 8.0.1 on samsung A5 (2017)

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
xfrans
Posts: 2
Joined: Mon 23 Sep 2019 09:29

UNIDAC 8.0.1 on samsung A5 (2017)

Post by xfrans » Tue 24 Sep 2019 03:42

Dear support
i am using
- UNIDAC 8.0.1 Trial Edtion
- Delphi XE7
- Samsung A5 (2017) android version 8.0.0

and want to connect to oracle Database in android.
the problem is, when i put the Tbutton in form to connect the oracle database, its always failed, the application close suddenly .

here is my script in button.onclick;
Connection: TUniConnection;
begin
Connection := TUniConnection.Create(nil);
try
Connection.ProviderName := 'Oracle';
Connection.SpecificOptions.Values['Direct'] := 'True';
Connection.Server := '172.20.1.9:1521:pdksdb;
Connection.Username := 'dblive';
Connection.Password := 'dblive';
Connection.Connect;
finally
Connection.Free;
end;

i'm already make sure that my android connect with the ip server,

thanks for the advice

ViktorV
Devart Team
Posts: 3168
Joined: Wed 30 Jul 2014 07:16

Re: UNIDAC 8.0.1 on samsung A5 (2017)

Post by ViktorV » Wed 25 Sep 2019 12:01

Please don't create duplicated topics. I answered to you at the topic: viewtopic.php?t=39368

Post Reply