create trigger in C#
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi folks, I want to create a trigger using C# and execute using ExecutenonQuery.I can have TableName on which i've to Create a trigger at Runtime. I need to Create a trigger for both insert and update.Can anyone help me? Appreciate any help. Thanks in advance sri
-
Hi folks, I want to create a trigger using C# and execute using ExecutenonQuery.I can have TableName on which i've to Create a trigger at Runtime. I need to Create a trigger for both insert and update.Can anyone help me? Appreciate any help. Thanks in advance sri
You need to generate sql command that creates a trigger in database during runtime programmatically and issue the command using SqlCommand class.
Giorgi Dalakishvili #region signature my articles #endregion