I am needing to convert a large amount of SQL queries into stored procedures. I have some code that updates about 20 or 30 values at one time in one Delphi procedure. I can
This is the shortest I know:
stored_procedure.Parameters.ParamByName('@SSN').Value := edtSSN.text;
Note, you need to assign the stored_procedure.Connection and call stored_procedure.Parameters.Refresh; before doing this
stored_procedure.Connection
stored_procedure.Parameters.Refresh;