C c81 Feb 6, 2007 #1 Hello, can i make to read in my dotnet application "RETURN @MaVar" of my store procedure ? thx
A Adamz5 Feb 6, 2007 #2 Hello, can i make to read in my dotnet application "RETURN @MaVar" of my store procedure ? thx Click to expand... Assuming the @MaVar is an out output from your stored procedure, ..NET would read the return from the stored procedure as below: MYVALUE = CType(sqlCommand.Parameters("@MaVar").Value, String) Regards Adam
Hello, can i make to read in my dotnet application "RETURN @MaVar" of my store procedure ? thx Click to expand... Assuming the @MaVar is an out output from your stored procedure, ..NET would read the return from the stored procedure as below: MYVALUE = CType(sqlCommand.Parameters("@MaVar").Value, String) Regards Adam
C c81 Feb 6, 2007 #3 Adamz5 a écrit : Assuming the @MaVar is an out output from your stored procedure, .NET would read the return from the stored procedure as below: MYVALUE = CType(sqlCommand.Parameters("@MaVar").Value, String) Regards Adam Click to expand... thx, i look that
Adamz5 a écrit : Assuming the @MaVar is an out output from your stored procedure, .NET would read the return from the stored procedure as below: MYVALUE = CType(sqlCommand.Parameters("@MaVar").Value, String) Regards Adam Click to expand... thx, i look that