Quantcast
Channel: Rick Schott - _DOT_NET_STUFF and more... » C#
Viewing all articles
Browse latest Browse all 7

Stored Procedure Helper Functions

$
0
0
    public SqlDataReader executeSPHelper(string cmdStr, ArrayList cmdParams)
    {

        SqlDataReader rd = null;
        SqlCommand sqlCmd = null;

        try
        {
            sqlCmd = new SqlCommand(cmdStr, yourConnection);
            sqlCmd.CommandType = CommandType.StoredProcedure;

            foreach (SqlParameter sqlParam in cmdParams)
            {
                sqlCmd.Parameters.Add(sqlParam);
            }

            rd = sqlCmd.ExecuteReader();

            return rd;
        }

        catch (Exception e)
        {
        }
        finally
        {
            sqlCmd = null;
        }
    }

    public System.Data.SqlClient.SqlCommand executeSPCommandHelper(string cmdStr, ArrayList cmdParams)
    {

        SqlCommand sqlCmd = null;

        try
        {
            sqlCmd = new SqlCommand(cmdStr, yourConnection);
            sqlCmd.CommandType = CommandType.StoredProcedure;

            foreach (SqlParameter sqlParam in cmdParams)
            {
                sqlCmd.Parameters.Add(sqlParam);
            }

            //rd = sqlCmd.ExecuteReader();

            return sqlCmd;
        }

        catch (Exception e)
        {

        }
        finally
        {
            sqlCmd = null;
        }
    }

    public System.Data.SqlClient.SqlCommand executeSPCommandHelper(string cmdStr)
    {

        SqlCommand sqlCmd = null;

        try
        {
            sqlCmd = new SqlCommand(cmdStr, yourConnection);
            sqlCmd.CommandType = CommandType.StoredProcedure;

            return sqlCmd;
        }

        catch (Exception e)
        {
        }
        finally
        {
            sqlCmd = null;
        }
    }



Viewing all articles
Browse latest Browse all 7

Trending Articles