Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come passare il parametro alla query mssql nel nodo js

Eseguo query SQL parametrizzate come questa:

var sql = require('mssql');
var myFirstInput = "foo bar";
var mySecondInput = "hello world";

sql.input('inputField1', sql.VarChar, myFirstInput);
sql.input('inputField2', sql.VarChar, mySecondInput);

sql.query("SELECT * FROM table WHERE field1 = @inputField1 OR field2 = @inputField2")
.then(function(results)
{
    //do whatever you want with the results
    console.log(results)
})
.catch(function(error)
{
   //do whatever when you get an error
   console.log(error)
})

Quello che succede qui è che sql.input('inputField1', sql.VarChar, myFirstInput) cambierà il @inputField1 con la variabile denominata myFirstInput . La stessa cosa accadrà per @inputField2 con mySecondInput .

Questo lo aiuterà dalle iniezioni SQL