You are not logged in.
Pages: 1
Hello AB,
I have this simple code.
var
fp : TSQLDBOracleConnectionProperties;
hts: TSQLDBServerHttpApi;
begin
fp := TSQLDBOracleConnectionProperties.Create
('//OR1-srv1:1521/MMXJ1',
'',
'user1',
'pass1'
);
Hts := TSQLDBServerHttpApi.Create(fp,'fp','80','user','pass');
end;
How can I access or Can I access this published database with others web technologie other then Delphi or lazarus?
if Not then, what to you recommand me to use.
PS: My database is huge, and I cant rewrite all using ORM's
Thanks you.
Offline
As documented, the remote connection is in proprietary optimized binary format, so will work only with the framework client code, only available with Delphi and FPC/Lazarus.
Offline
As documented, the remote connection is in proprietary optimized binary format, so will work only with the framework client code, only available with Delphi and FPC/Lazarus.
Merciiiiii !!
Offline
Pages: 1