How to Set parameters to formula stored in Database in MSSQl
How to Set parameters to formula stored in table in MSSQl Formula parameter also st开发者_Python百科ored in different table
If you want to call MSSQL database formula
string command = "select dbo.TestFormula({0}, {1}";
string.Format(command, var1, var2);
SqlCommand cmd = new SqlCommand(command, conn);
....
Hope this help
精彩评论