You are not logged in.
Pages: 1
Hello i just added a CRUD example,
i used the authentication and the ManyToMany ORM using the DestList.
i hope it helps, if anyone need persists data Using ManyToMany CRUD ORM externally.
The code can be found here: https://github.com/EduardoShibukawa/mOR … le/main.py
Thanks for this nice implementation for Python!
Thanks!
After update my mORMot repository it has started to thrown an Acess Violation Exception,
i have just removed the fSessionUser.Free and it worked normally.
destructor TSQLRestClientURI.Destroy;
...
SessionClose; // if not already notified <- Here it executes a FreeAndNil(fSessionUser)
finally
// release memory and associated classes
if fRemoteLogClass<>nil then begin
{$ifndef LVCL}
FreeAndNil(fRemoteLogThread);
{$endif}
ServerRemoteLogStop;
end;
fSessionUser.Free; <- Here throw an Acess Violation, because the fSessionUser it's already Free
...
end;
Thanks, feel free to add it there, if it helps somebody i'll be happy.
Hello in the link bellow is an example to a http authenticated mORMot server connection using python.
https://github.com/EduardoShibukawa/mOR … entication
Pages: 1