Hello,
I’ve developed a few forms using the data input functionality of Dundas however my users would like the ability to update the records they have input. I’m wondering if anyone has explored the use of passing paramaters to stored procedures in order to update the data input table in the back end of Dundas? e.g.
-
CREATE
PROCEDURE
[dbo].[sp_UpdateRecord]
@ProductID
int
, @Value NVARCHAR(MAX)
AS
BEGIN
UPDATE [dbo].[DundasTable]
SET Column = @Value
WHERE productID = @ProductID
END
Any ideas would be appreciated