#1 2019-04-15 13:42:30

Bsaidus
Member
From: Algeria
Registered: 2018-12-16
Posts: 50

Web access to mORMot Database published server.

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

#2 2019-04-15 16:03:48

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,240
Website

Re: Web access to mORMot Database published server.

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

#3 2019-04-17 07:29:26

Bsaidus
Member
From: Algeria
Registered: 2018-12-16
Posts: 50

Re: Web access to mORMot Database published server.

ab wrote:

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

Board footer

Powered by FluxBB