home » people » ajit

ajit

Ajit Gupta

Profile

Name:
Ajit Gupta
Location:
N/A
Bio:
N/A
Interests:
reading books,making new programing logic,watching movie ,gossiping with friends.

Community info

Member since:
6/17/2009 12:20:09 PM
Rank:
2
Role:
SiteAdministrator
Total Posts:
12
Total points:
613

Personal Information

Favorite Music:
TERA MUJHSE HAI PEHLE KA (AA GALE LAG JAA ),Woh Kagaz ki kashti,He Ram He Ram - Jagjit Singh,Hum Hain Rahi Pyar Ke, Sab To Milake Peete Hai Paani Sharaab Mein.........Main Pee ...(Pankaj Udhas )
Favorite TV Shows:
N/A
Favorite Books:
Kafan ,Panch Phool and Gaban by Munshi Premchand, India 2020 of Avul Pakir Jainulabdeen Abdul Kalam
Favorite Cuisines:
All range of Indian food
Occupation:
Software Engineer
Sex:
Male
Industry:
Loading ...

Confirm

  • Interfaces in C#
    This article discribe how to implement the concept of multiple inheritance in c# viaInterface .
    6/21/2009 4:23:55 AM - Comments: 0
  • Value type vs Reference type in C#
    Value types  are allocated on the stack , while all reference types  are allocated on the heap .  A value type contains the actual value. A reference type contains a reference to the value. When a value type is assigned to another value type, it is copied...
    11/9/2009 11:50:50 PM - Comments:0
  • How to show hierarchies of childs by using SQL Serve
    First I create a table Create Table ParentChild_Table(ID int identity(100,1),[Name]varchar(100),ParentID int) Then insert some records INSERT INTO ParentChild_Table VALUES('JOHN',0)INSERT INTO ParentChild_Table VALUES ('RINA',100)INSERT INTO ParentChild_T...
    10/5/2009 11:54:44 AM - Comments:1
  • How to generate alpha numeric id in Sql Server database?
    This blog explain  how to  create alpha numeric id in sql server for this I’m going to create a Table with two columns  . CREATE TABLE USER_DATA([ID] NVARCHAR(10),[NAME] NVARCHAR(50)) Then create a stored procedure for insertion id and name in table here ...
    8/25/2009 7:54:24 AM - Comments:0
  • SET NOCOUNT in sql server
    It stops the message that shows the count of the number of rows affected by a Transact-SQL statement or stored procedure from being returned as part of the result set. Syntax SET NOCOUNT { ON | OFF } for example set nocount on select * from Table here mes...
    7/10/2009 8:32:53 PM - Comments:0
  • Temp Tables vs Table Variables in sql server
    When writing SQL code, you often need a table in which to store data temporarily when it comes time to execute that code. You have three table options: local temporary tables, global temporary tables and table variables. I'll discuss the differences betwe...
    7/10/2009 8:03:52 PM - Comments:1
  • Selecting duplicate rows from a table in sql server
    This example shows on how to  get all duplicate  rows from a table for this I’m going to create a Table with two column  and inserting some distinct & duplicate rows in it and then write query to display all duplicate records . Step1: CREATE TABLE Employ_...
    7/2/2009 8:38:44 PM - Comments:0
  • out vs ref parameter in c#
    Even the variable passed as out parameter is similar to ref but there are few implementation differences.Argument passed as ref must be initialized before it is passed to the method, where as in case of out its is not necessary. out parameter can be used ...
    7/1/2009 8:43:50 PM - Comments:1
  • Delegate in c#
    “Delegate is a method template which used to implement the concept of function pointer.” A Delegate is a special type of user-defined variable that define globally ,like a class.In fact ,a delegate is created like a interface but as a method .Based on thi...
    7/1/2009 8:20:12 PM - Comments:0
  • Classes vs Structs
    Classes vs Structs Structs differ from classes in the way that they are stored in memory and accessed (classes are reference types stored in the heap, structs are value types stored on the stack), and in some of the features (for example, structs don’t su...
    6/30/2009 8:59:11 PM - Comments:0
  • Property in c#
    The idea of a property is that it is a method or pair of methods that are dressed to look like a field as far as any client code is concerned. A good example of this is the Height property of a Windows Form. "Properties can be thought as virtual fields." ...
    6/30/2009 8:53:02 PM - Comments:0
5 people found.