Forum Replies Created

Viewing 6 posts - 1 through 7 (of 7 total)

  • RE: storedprocedure

    protected void btnSave_Click(object sender, EventArgs e)

    {

    DataTable dataTable = new DataTable("tvpTID");

    ...

  • RE: storedprocedure

    If I try something like this:

    How to pass a tvp in C#?

    protected void btnSave_Click(object sender, EventArgs e)

    {

    ...

  • RE: storedprocedure

    Oh okay!

    Well now to call this SP for UI, I use this below code.. but what do I have to pass as the tvp object parameter, to enter the selected...

  • RE: storedprocedure

    Thanks. So I tried this code, but it gives me error saying I must declare @TrainerID,, when I've already done that.

    Create type dbo.tvpTID As TABLE

    (

    TrainerID int not null,

    primary key (TrainerID)

    )

    go

    alter...

  • RE: storedprocedure

    Can I know how to use TVP in my stored procedure?

  • RE: storedprocedure

    Thts what my question is..

Viewing 6 posts - 1 through 7 (of 7 total)