Click here to Skip to main content
15,886,006 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I have created trigger from which i can get number of rows. now i want to show this no. of rows on webpage which update every time when trigger is executed.for this what i have to add on webpage and trigger please give idea and possible then code also.
CREATE TRIGGER DEMO
ON dbo.t_volunteer
AFTER INSERT
AS
BEGIN
	DECLARE @id INT
	SET @id=(SELECT COUNT(VUID)FROM dbo.t_volunteer)
	PRINT @id
END
GO
Posted

1 solution

you can't get the result of a trigger, it's executed inside the DB, without you calling it, so there's no where for it to come back to you. A trigger is useless here, it's a dumb thing to do. A trigger should act after an insert to perform a DB operation. If you're wanting to get this data, do a stored proc and call it, or do your insert in a proc that also calls this, so you can get the data back and show it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900