Robert Gilland 5 Posted 17 hours ago Can I passing an SQL (select Statement )into a REST Request to a Rest Server , and receive a result in a JSON Dataset? Can I pass an INSERT/UPDATE/DELETE Statement into a Rest Request? Share this post Link to post
haentschman 92 Posted 12 hours ago Hi...😎 how about: TMS XData: Accessing any database with SQL queries via the TMS XData REST server https://www.youtube.com/watch?v=2SCvzw0L27o&ab_channel=tmssoftwareTV Share this post Link to post
Lars Fosdal 1864 Posted 10 hours ago 7 hours ago, Robert Gilland said: Can I passing an SQL (select Statement )into a REST Request to a Rest Server , and receive a result in a JSON Dataset? Can I pass an INSERT/UPDATE/DELETE Statement into a Rest Request? Short answer: Yes Long answer: Yes, but don't! It would put your SQL database at risk. Instead, build a proper REST API as - it hides the underlying database - it allows you to change the underlying database operations without changing the client A REST API done right is far more secure and robust. 5 Share this post Link to post