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

Race to Linux - Race 2: Time Tracker Starter Kit

Rate me:
Please Sign up or sign in to vote.
4.25/5 (5 votes)
26 Sep 20051 min read 40.4K   274   16  
Time Tracker Starter Kit port to Linux using Mono and FireBird
<html>
	<head>
		<link rel="stylesheet" href="style.css">
	</head>
	<body>
		<h1>
			"GetProject" Stored Procedure
		</h1>
		<b>Description:</b>
		<p>
			This stored procedure retrieves project information based on ProjectID, as well 
			as project members (users) and categories associated with this project.
		</p>
		<b>Definition:</b>
		<pre>    
	CREATE   PROCEDURE TT_GetProject
	(
		@ProjectID int
	)
	AS

	SELECT 
		name, Description, ManagerUserID, EstCompletionDate, EstDuration

	FROM 
		TT_Projects

	WHERE 
		ProjectID = @ProjectID

	exec TT_ListMembers @ProjectID
	exec TT_ListCategoriesByProject @ProjectID
        </pre>
		<b>Database Tables Used: </b>
		<p>
		The primary key in the Projects table is the ProjectID identity field.
		<p>
			<img src="../docs/images/1x1.gif" width="25"> <img src="../docs/images/Projects.png"></p>
		<p>
		The primary key in the Categories table is the CategoryID identity field.
		<p>
			<img src="../docs/images/1x1.gif" width="25"> <img src="../docs/images/Categories.png"></p>
		<p>
		The primary key in the ProjectMembers table is a composite key including 
		both&nbsp;the the ProjectID and&nbsp;UserID fields. This table represents a 
		user's membership in a project; i.e.,&nbsp;users should only enter time for 
		projects they belong to.&nbsp;
		<p>
		There is a Foreign key relationship between this table and the Projects table 
		on the ProjectID field.
		<p>
			<img src="../docs/images/1x1.gif" width="25"> <img src="../docs/images/ProjectMembers.png"></p>
	</body>
</html>

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Uruguay Uruguay
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions