07-30-04 10:49 PM
I would like to use the following stored procedure with the SQL Adapter. I d
on't want to use an updategram for deletes. How do I need to modify it to ge
t the adapter to generate my schema?
CREATE PROCEDURE [dbo].[EPGReports_Delete_ByDataSourceID]
@EPGDataSourceID int
AS
SET NOCOUNT ON
DELETE FROM
[EPGReports]
WHERE
EPGDataSourceID = @EPGDataSourceID
GO
--
Bryan Freeman
Consultant
Ascentium Corp.
[ Post a follow-up to this message ]
|