How can we call UDF(User Define Function) using C# code in
ASP.net ?
Answer Posted / reventh
yes you can call a function.
sqlcommand cmd=new sqlcommand("select function
(parametter)");
sqldatareader rdr=cmd.excutereader();
while(rdr.read()
{
do something here;
}
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How do I find information about the install locations for the various instances running on a computer?
What is difference between aggregate and analytic function?
what are different types of backups available in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration
Why we need sql server?
How do I partition a table in sql server?
What are the properties of primary key?
How to enable/disable indexes?
What is a unique index?
Do you know spatial data types - geometry and geography in sql server 2008?
What is a db view?
What is difference between rownum and row_number?
What are binary string data types in ms sql server?
What happens if we shrink log file in sql server?
How to list all field names in the result set using mssql_field_name()?
What are views used for?