Click here to Skip to main content
15,886,077 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
C#
public static  SqlDataReader ExecuteReader(string connectionString, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
        {
            
            SqlConnection cn = new SqlConnection(connectionString);
            cn.Open();

            try {
                return ExecuteReader(cn, (SqlTransaction)null, commandType, commandText, commandParameters, SqlConnectionOwnership.Internal);
            } catch {
            
                cn.Dispose();
            }
            
        }
Posted
Comments
nilesh sawardekar 18-Jul-14 2:19am    
Where your facing problem.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900