USP_RESOURCECATEGORYCODE_GETENTRYDATA

Returns information about a table entry in the "Resource Category" 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:  1/27/2010 7:01:01 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=2.5.465.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE PROCEDURE dbo.USP_RESOURCECATEGORYCODE_GETENTRYDATA
(
@ID uniqueidentifier
)

as

SET NOCOUNT ON;

SELECT

DESCRIPTION,
[ACTIVE],
[SEQUENCE],
TSLONG

FROM dbo.RESOURCECATEGORYCODE

WHERE ID=@ID;

return 0;