Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. create PROCEDURE SPROC_GetTrail
  2. -- Add the parameters for the stored procedure here
  3. @AccountId INT ,
  4. @SchemePlanCode INT ,
  5. @Todate OUTPUT
  6.  
  7. END
  8.  
  9. db = DatabaseFactory.CreateDatabase("io");
  10. getCommissionReconMisCmd = db.GetStoredProcCommand("SPROC_GetTrail");
  11. db.AddINParameter(getCommissionReconMisCmd, "@Id", DbType.Int32, AId);---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement