Elton1984
Programmer
- Mar 8, 2004
- 16
Greetings everyone..
I did a simple stored procedure which would enable mi to delete some records from the DB..
STORED PROCEDURE
----------------
CREATE Procedure purgeRecords
As
DELETE FROM tblLoan WHERE CollectionStatus = 'Uncollected'
GO
----------------
Can anyone help with calling this stored procedure from a JSP page?
Or is there any problems wif my stored procedure?
Thanx in advance
Elton Wong
I did a simple stored procedure which would enable mi to delete some records from the DB..
STORED PROCEDURE
----------------
CREATE Procedure purgeRecords
As
DELETE FROM tblLoan WHERE CollectionStatus = 'Uncollected'
GO
----------------
Can anyone help with calling this stored procedure from a JSP page?
Or is there any problems wif my stored procedure?
Thanx in advance
Elton Wong