You are not logged in.
Pages: 1
Hello,
When I run the following command on the client side, the SQL statement is not executed. Can someone give me a tip, what I do wrong?
This is the command I want to run:
TSQLRestClientURI.Execute('UPDATE TblTest SET Field1 = 2')
TSQLRestClientURI.Execute returns False
Many thanks
Olaf
Offline
As explained in the framework doc:
1. Plain SQL are a wrong idea on the client side.
Use a service instead.
2. For security reasons, such direct SQL write operations are disabled.
See TSQLAuthGroup documentation about tuning the ORM remote execution rights.
3. If you really need remote SQL execution, consider using the SynDBRemote feature, not the RESTful ORM.
Offline
Pages: 1