Posts

Showing posts from January, 2013

Trigger...

A trigger is a special kind of stored procedure that is invoked whenever an attempt is made to modify the data in the table it protects. Modifications to the table are made ussing INSERT,UPDATE,OR DELETE statements.Triggers are used to enforce data integrity and business rules such as automatically updating summary data. It allows to perform cascading delete or update operations. If constraints exist on the trigger table,they are checked prior to the trigger execution. If constraints are violated statement will not be executed and trigger will not run.Triggers are associated with tables and they are automatic . Triggers are automatically invoked by SQL SERVER. Triggers prevent incorrect , unauthorized,or inconsistent changes to data. Creation of Triggers   Triggers are created with the CREATE TRIGGER statement. This statement specifies that the on which table trigger is defined and on which events trigger will be invoked. To drop Trigger one can use DROP TRIGGER statem...

WHAT IS .NET ??

C#  1.     What is .NET? ·          It is a platform neutral framework. ·          It is a layer between the operating system and the programming language. ·          It supports many programming languages, including VB.NET, C# etc. ·          .NET provides a common set of class libraries, which can be accessed from any .NET based programming language. There will not be separate set of classes and libraries for each language. If you know any one .NET language, you can write code in any .NET language!! ·          In future versions of Windows, .NET will be freely distributed as part of operating system and users will never have to install .NET separately. 2.     What is Not? ·       ...