USP_EDUCATIONALINSTITUTIONLOCATIONCODE_GETENTRYDATA

Returns information about a table entry in the "Educational Institution Location" code table.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The ID of the table entry for which information is to be retrieved.

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  4/29/2010 7:27:20 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=2.6.1444.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE PROCEDURE dbo.USP_EDUCATIONALINSTITUTIONLOCATIONCODE_GETENTRYDATA
(
@ID uniqueidentifier
)

as

SET NOCOUNT ON;

SELECT

DESCRIPTION,
[ACTIVE],
[SEQUENCE],
TSLONG

FROM dbo.EDUCATIONALINSTITUTIONLOCATIONCODE

WHERE ID=@ID;

return 0;