<input ng-keypress = "onlyNumbers($event)" min = "0" type = "number" step = "1" ng-pattern...
Read More
Hi
Explain Endpoints in WCF Service
Client uses endpoint to communicate with WCF Service. A WCF service endpoint has three basic elements i.e. Address, Binding and Contract. ...
Read More
What is Encapsulation
Encapsulation is a process of binding data members (variables, properties) and member functions (methods) into a single unit, ability to...
Read More
What is abstract class
Abtract class: Abtract is a class ,it contains abtract and non abstract methods .In abstract methods have declarions only but not h...
Read More
SQL Server BACKUP DATABASE command - MS SQL Tips
DECLARE @name VARCHAR(50) -- database name DECLARE @path VARCHAR(256) -- path for backup files DECLARE @fileName VARCHAR(256) -- filename...
Read More
Using try catch in SQL Server stored procedures
CREATE PROCEDURE dbo.TryCatchTest AS BEGIN TRY SELECT 1/0 END TRY BEGIN CATCH SELECT ERROR_NUMBER() AS ErrorNumber ,ERR...
Read More
CREATE VIEW in MONGODB
db.createView( "actView\", "CollectionName", [ { $project: { usertype: 1,username:1 } } ] )
Read More
Subscribe to:
Posts (Atom)