Click here to Skip to main content
15,891,905 members
Articles / Web Development / ASP.NET

EHSDataCompliance Framework

Rate me:
Please Sign up or sign in to vote.
3.95/5 (13 votes)
5 Mar 2012CPOL13 min read 30.7K   281   8  
This article is about limiting the amount of codes a developer has to write in the DAC layer
USE MASTER;
CREATE DATABASE Test3
USE Test3;
CREATE TABLE Engin([ID]   int IDENTITY(1,1) NOT NULL PRIMARY KEY,[Description]   VARCHAR(100)  NOT NULL ,[DateCreated]   datetime  NOT NULL ,[CreatedBy]   VARCHAR(500)  NOT NULL ,[DateModified]   datetime  NULL ,[ModifiedBy]   VARCHAR(500)  NULL )
CREATE TABLE Person([ID]   int IDENTITY(1,1) NOT NULL PRIMARY KEY,[Title]   int  NULL ,[FullName]   VARCHAR(100)  NULL ,[Initials]   VARCHAR(100)  NULL ,[FirstName]   VARCHAR(100)  NULL ,[LastName]   VARCHAR(100)  NULL ,[Age]   int  NOT NULL ,[AddressNo]   VARCHAR( 100)  NOT NULL ,[AddressStreet]   VARCHAR( 100)  NOT NULL ,[AddressCity]   VARCHAR( 100)  NOT NULL ,[AddressCountry]   VARCHAR( 100)  NOT NULL ,[Status]   int  NULL ,[DateCreated]   datetime  NOT NULL ,[CreatedBy]   VARCHAR(500)  NOT NULL ,[DateModified]   datetime  NULL ,[ModifiedBy]   VARCHAR(500)  NULL )
CREATE TABLE Car([ID]   int IDENTITY(1,1) NOT NULL PRIMARY KEY,[OwnerId ]   int  NOT NULL REFERENCES  person(Id),[Description]   VARCHAR(100)  NULL ,[Type]   int  NULL ,[EnginId ]   int  NOT NULL REFERENCES  engin(Id),[Color]   VARCHAR( 100)  NOT NULL ,[Usage]   int  NOT NULL ,[DateCreated]   datetime  NOT NULL ,[CreatedBy]   VARCHAR(500)  NOT NULL ,[DateModified]   datetime  NULL ,[ModifiedBy]   VARCHAR(500)  NULL )

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Informatics International (Pvt)Ltd
Sri Lanka Sri Lanka
Name : Eraj Hilary Shalindra Fernando
Email : hilary.shalindra@gmail.com

Comments and Discussions