SQL Prepare Statements in JS
Hello,
i saw in the sdk three ways to do SQL commands.
1) via C++
2) via JS client-side framework
3) via JS library for App Services
to 1) we see that sql prepare statements could be used
to 2) we assume that it is solved by prepare statements, but we didn´t checked it
to 3) we didn´t see anything that it is possible to do an sql prepare statement, so that the sql command and the dynamic parts (values) could be separated for more prevention of sql injections.
I hope there is a way to do sql prepare statements also in JS App Services and you could show me an example solution to do that.