Description
Checks the compatibility of the schema version for the given feature.
Parameters
| Name |
Type |
Direction |
| @Feature |
nvarchar |
Input |
| @CompatibleSchemaVersion |
nvarchar |
Input |
Definition
CREATE PROCEDURE [dbo].aspnet_CheckSchemaVersion
@Feature nvarchar(128),
@CompatibleSchemaVersion nvarchar(128)
AS
BEGIN
IF (EXISTS( SELECT *
FROM dbo.aspnet_SchemaVersions
WHERE Feature = LOWER( @Feature ) AND
CompatibleSchemaVersion = @CompatibleSchemaVersion ))
RETURN 0
RETURN 1
END
ASP.NET 2.0 Provider Database