// Store Procedure
CREATE proc calum_select_mcf_patient
(@piuid varchar(64) = '1%',
@domain_ref int = 1131)
as
select * from mcf_patient
where patient_instance_uid like @piuid
and domain_ref = @domain_ref
return
GO
// SQL Client Library
#include <sqlfront.h>
#include <sqldb.h>
// C Program...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.