DotnetProgramming
Friday, December 14, 2012
How to add composite primary key in MySQL
Adding composite primary key in MySQL
ALTER TABLE
tablename
DROP PRIMARY KEY,
ADD PRIMARY KEY (
columnID1
,
columnID2
,
columnID3
);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
Cascading Dropdown List for Country/State/City in ASP.Net using Entity Framework
In this blog I am going to show how we can work with cascading dropdown list for country/state/city in asp.net using Entity Framework. ...
Entity framework CRUD operations using Stored Procedure
In this post I would like to share some thing regarding Entity Framework, how we can implement CRUD operations using stored procedures in E...
Display images using entity framework along with MVC4
Create a table in SQL server as follows USE [forumDB1] GO /****** Object: Table [dbo].[users] Script Date: 01/23/2013 11:25:...
Create dynamical Ajax Tab and filling data from database
I have attended an interview, there I asked a question like how to create a Tab container in asp.net dynamically with the department name fr...
Dynamic Data Entities Web Application with Entity Framework
In this article I will explain how we can work with Dynamic Data Entities Web Application which is available at the time of creating a p...
Forums application using MVC4 and entity framework
Hi all in this blog I would like to show you how we can create a forums application using MVC4 along with entity framework. Database ...
How to add composite primary key in MySQL
Adding composite primary key in MySQL ALTER TABLE tablename DROP PRIMARY KEY, ADD PRIMARY KEY ( columnID1 , columnID2 , columnID3...
Devexpress Date Edit Validating two Dates in Javascript using CustomValidator
In this post I am going to explain how we can validate two DateEdit controls which are Devexpress controls using CustomValidator. First d...
System.Configuration.ConfigurationSettings.AppSettings' is obsolete
Have you ever come across the warning System.Configuration.ConfigurationSettings.AppSettings' is obsolete: '"This method is o...
Continued Entity framework CRUD operations using Stored Procedure
In the last blog I posted how can directly call Stored Procedures with out mapping them to a Model. Check here Entity Framework Download...
No comments:
Post a Comment