请问如何用TADOStoredProc调用存储过程CREATE PROCEDURE [dbo].[proc_select] AS
declare @sc2 varchar(50)
select * from test
where c2 like '%@sc2%'
GO