国产精品探花熟女在线观看,2015超级碰碰免费观看视频,天天做天天日天天爱,日本韩国欧美在线视频,亚洲不卡在线小视频,中文字幕一区二区三区夫目前犯,av免费在线观看看看,亚洲日本日本精品二区一区,午夜欧美精品久久久久

主頁 > 知識(shí)庫 > 微軟官方SqlHelper類 數(shù)據(jù)庫輔助操作類 原創(chuàng)

微軟官方SqlHelper類 數(shù)據(jù)庫輔助操作類 原創(chuàng)

熱門標(biāo)簽:塔城代理外呼系統(tǒng) 地圖定位圖標(biāo)標(biāo)注 天心智能電銷機(jī)器人 遂寧市地圖標(biāo)注app 地圖標(biāo)注的公司有哪些 地圖標(biāo)注專業(yè)團(tuán)隊(duì) 代理接電話機(jī)器人如何取消 400電話辦理哪家性價(jià)比高 濮陽外呼電銷系統(tǒng)怎么樣

數(shù)據(jù)庫操作類真的沒有必要自己去寫,因?yàn)槌墒斓念悗煺娴姆浅M晟屏耍脕碇苯佑镁秃茫r(shí)省力。

本文就為大家介紹微軟官方的程序PetShop4.0中的SqlHelper類,先來做一下簡單的介紹,PetShop是一個(gè)范例,微軟用它來展示.Net企業(yè)系統(tǒng)開發(fā)的能力。

那SqlHelper中封裝了哪些方法呢?

里面的函數(shù)一堆,常用的就那幾個(gè),無非就是增刪改查嘛,來看下幾種常用的函數(shù):

1.ExecuteNonQuery 執(zhí)行增刪改
2.ExecuteReader 執(zhí)行查詢
3.ExecuteScalar 返回首行首列

使用方法介紹

Web.config配置

connectionStrings>
	add name="ConnectionString" connectionString="server=127.0.0.1;uid=sa;pwd=ok;database=PetShop;Max Pool Size =512; Min Pool Size=0; Connection Lifetime = 300;packet size=1000;" providerName="System.Data.SqlClient" />
/connectionStrings>

調(diào)用函數(shù)的寫法

sql = "UPDATE Student set Name = @Name WHERE Id = @Id";
SqlHelper.ExecuteNonQuery(CommandType.Text, sql, new SqlParameter[]{
 new SqlParameter("@Name", name),
 new SqlParameter("@Id", id)
});

這樣調(diào)用就比較簡化,而且比較靈活

源碼呈上

/// summary>
  /// The SqlHelper class is intended to encapsulate high performance, 
  /// scalable best practices for common uses of SqlClient.
  /// /summary>
  public abstract class SqlHelper
  {

    //數(shù)據(jù)庫連接字符串
    public static readonly string ConnectionString = ConfigurationManager.ConnectionStrings["SQLConnString"].ConnectionString;

    #region 私有函數(shù)和方法

    /// summary>
    /// This method is used to attach array of SqlParameters to a SqlCommand.
    /// 
    /// This method will assign a value of DbNull to any parameter with a direction of
    /// InputOutput and a value of null. 
    /// 
    /// This behavior will prevent default values from being used, but
    /// this will be the less common case than an intended pure output parameter (derived as InputOutput)
    /// where the user provided no input value.
    /// /summary>
    /// param name="command">The command to which the parameters will be added/param>
    /// param name="commandParameters">An array of SqlParameters to be added to command/param>
    private static void AttachParameters(SqlCommand command, SqlParameter[] commandParameters)
    {
      if (command == null) throw new ArgumentNullException("command");
      if (commandParameters != null)
      {
        foreach (SqlParameter p in commandParameters)
        {
          if (p != null)
          {
            // Check for derived output value with no value assigned
            if ((p.Direction == ParameterDirection.InputOutput ||
              p.Direction == ParameterDirection.Input) 
              (p.Value == null))
            {
              p.Value = DBNull.Value;
            }
            command.Parameters.Add(p);
          }
        }
      }
    }

    /// summary>
    /// This method assigns dataRow column values to an array of SqlParameters
    /// /summary>
    /// param name="commandParameters">Array of SqlParameters to be assigned values/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values/param>
    private static void AssignParameterValues(SqlParameter[] commandParameters, DataRow dataRow)
    {
      if ((commandParameters == null) || (dataRow == null))
      {
        // Do nothing if we get no data
        return;
      }

      int i = 0;
      // Set the parameters values
      foreach (SqlParameter commandParameter in commandParameters)
      {
        // Check the parameter name
        if (commandParameter.ParameterName == null ||
          commandParameter.ParameterName.Length = 1)
          throw new Exception(
            string.Format(
              "Please provide a valid parameter name on the parameter #{0}, the ParameterName property has the following value: '{1}'.",
              i, commandParameter.ParameterName));
        if (dataRow.Table.Columns.IndexOf(commandParameter.ParameterName.Substring(1)) != -1)
          commandParameter.Value = dataRow[commandParameter.ParameterName.Substring(1)];
        i++;
      }
    }

    /// summary>
    /// This method assigns an array of values to an array of SqlParameters
    /// /summary>
    /// param name="commandParameters">Array of SqlParameters to be assigned values/param>
    /// param name="parameterValues">Array of objects holding the values to be assigned/param>
    private static void AssignParameterValues(SqlParameter[] commandParameters, object[] parameterValues)
    {
      if ((commandParameters == null) || (parameterValues == null))
      {
        // Do nothing if we get no data
        return;
      }

      // We must have the same number of values as we pave parameters to put them in
      if (commandParameters.Length != parameterValues.Length)
      {
        throw new ArgumentException("Parameter count does not match Parameter Value count.");
      }

      // Iterate through the SqlParameters, assigning the values from the corresponding position in the 
      // value array
      for (int i = 0, j = commandParameters.Length; i  j; i++)
      {
        // If the current array value derives from IDbDataParameter, then assign its Value property
        if (parameterValues[i] is IDbDataParameter)
        {
          IDbDataParameter paramInstance = (IDbDataParameter)parameterValues[i];
          if (paramInstance.Value == null)
          {
            commandParameters[i].Value = DBNull.Value;
          }
          else
          {
            commandParameters[i].Value = paramInstance.Value;
          }
        }
        else if (parameterValues[i] == null)
        {
          commandParameters[i].Value = DBNull.Value;
        }
        else
        {
          commandParameters[i].Value = parameterValues[i];
        }
      }
    }

    /// summary>
    /// This method opens (if necessary) and assigns a connection, transaction, command type and parameters 
    /// to the provided command
    /// /summary>
    /// param name="command">The SqlCommand to be prepared/param>
    /// param name="connection">A valid SqlConnection, on which to execute this command/param>
    /// param name="transaction">A valid SqlTransaction, or 'null'/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParameters to be associated with the command or 'null' if no parameters are required/param>
    /// param name="mustCloseConnection">c>true/c> if the connection was opened by the method, otherwose is false./param>
    private static void PrepareCommand(SqlCommand command, SqlConnection connection, SqlTransaction transaction, CommandType commandType, string commandText, SqlParameter[] commandParameters, out bool mustCloseConnection)
    {
      if (command == null) throw new ArgumentNullException("command");
      if (commandText == null || commandText.Length == 0) throw new ArgumentNullException("commandText");

      // If the provided connection is not open, we will open it
      if (connection.State != ConnectionState.Open)
      {
        mustCloseConnection = true;
        connection.Open();
      }
      else
      {
        mustCloseConnection = false;
      }

      // Associate the connection with the command
      command.Connection = connection;

      // Set the command text (stored procedure name or SQL statement)
      command.CommandText = commandText;

      // If we were provided a transaction, assign it
      if (transaction != null)
      {
        if (transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
        command.Transaction = transaction;
      }

      // Set the command type
      command.CommandType = commandType;

      // Attach the command parameters if they are provided
      if (commandParameters != null)
      {
        AttachParameters(command, commandParameters);
      }
      return;
    }

    #endregion private utility methods  constructors

    #region ExecuteNonQuery

    public static int ExecuteNonQuery(CommandType cmdType, string cmdText)
    {
      return ExecuteNonQuery(ConnectionString, cmdType, cmdText);
    }

    public static int ExecuteNonQuery(CommandType cmdType, string cmdText, params SqlParameter[] commandParameters)
    {
      return ExecuteNonQuery(ConnectionString, cmdType, cmdText, commandParameters);
    }

    /// summary>
    /// Execute a SqlCommand (that returns no resultset and takes no parameters) against the database specified in 
    /// the connection string
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int result = ExecuteNonQuery(connString, CommandType.StoredProcedure, "PublishOrders");
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(string connectionString, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteNonQuery(connectionString, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns no resultset) against the database specified in the connection string 
    /// using the provided parameters
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int result = ExecuteNonQuery(connString, CommandType.StoredProcedure, "PublishOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(string connectionString, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");

      // Create  open a SqlConnection, and dispose of it after we are done
      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        connection.Open();

        // Call the overload that takes a connection in place of the connection string
        return ExecuteNonQuery(connection, commandType, commandText, commandParameters);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns no resultset) against the database specified in 
    /// the connection string using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// int result = ExecuteNonQuery(connString, "PublishOrders", 24, 36);
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored prcedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(string connectionString, string spName, params object[] parameterValues)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteNonQuery(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteNonQuery(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns no resultset and takes no parameters) against the provided SqlConnection. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int result = ExecuteNonQuery(conn, CommandType.StoredProcedure, "PublishOrders");
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(SqlConnection connection, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteNonQuery(connection, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns no resultset) against the specified SqlConnection 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int result = ExecuteNonQuery(conn, CommandType.StoredProcedure, "PublishOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(SqlConnection connection, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connection == null) throw new ArgumentNullException("connection");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(cmd, connection, (SqlTransaction)null, commandType, commandText, commandParameters, out mustCloseConnection);

      // Finally, execute the command
      int retval = cmd.ExecuteNonQuery();

      // Detach the SqlParameters from the command object, so they can be used again
      cmd.Parameters.Clear();
      if (mustCloseConnection)
        connection.Close();
      return retval;
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns no resultset) against the specified SqlConnection 
    /// using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// int result = ExecuteNonQuery(conn, "PublishOrders", 24, 36);
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(SqlConnection connection, string spName, params object[] parameterValues)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteNonQuery(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteNonQuery(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns no resultset and takes no parameters) against the provided SqlTransaction. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int result = ExecuteNonQuery(trans, CommandType.StoredProcedure, "PublishOrders");
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(SqlTransaction transaction, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteNonQuery(transaction, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns no resultset) against the specified SqlTransaction
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int result = ExecuteNonQuery(trans, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(SqlTransaction transaction, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(cmd, transaction.Connection, transaction, commandType, commandText, commandParameters, out mustCloseConnection);

      // Finally, execute the command
      int retval = cmd.ExecuteNonQuery();

      // Detach the SqlParameters from the command object, so they can be used again
      cmd.Parameters.Clear();
      return retval;
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns no resultset) against the specified 
    /// SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// int result = ExecuteNonQuery(conn, trans, "PublishOrders", 24, 36);
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQuery(SqlTransaction transaction, string spName, params object[] parameterValues)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteNonQuery(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteNonQuery(transaction, CommandType.StoredProcedure, spName);
      }
    }

    #endregion ExecuteNonQuery

    #region ExecuteDataset

    public static DataSet ExecuteDataset(CommandType commandType, string commandText)
    {
      return ExecuteDataset(ConnectionString, commandType, commandText);
    }

    public static DataSet ExecuteDataset(CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      return ExecuteDataset(ConnectionString, commandType, commandText, commandParameters);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the database specified in 
    /// the connection string. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(connString, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(string connectionString, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteDataset(connectionString, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the database specified in the connection string 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(connString, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(string connectionString, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");

      // Create  open a SqlConnection, and dispose of it after we are done
      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        connection.Open();

        // Call the overload that takes a connection in place of the connection string
        return ExecuteDataset(connection, commandType, commandText, commandParameters);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the database specified in 
    /// the connection string using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(connString, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(string connectionString, string spName, params object[] parameterValues)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteDataset(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteDataset(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(conn, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(SqlConnection connection, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteDataset(connection, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(conn, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(SqlConnection connection, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connection == null) throw new ArgumentNullException("connection");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(cmd, connection, (SqlTransaction)null, commandType, commandText, commandParameters, out mustCloseConnection);

      // Create the DataAdapter  DataSet
      using (SqlDataAdapter da = new SqlDataAdapter(cmd))
      {
        DataSet ds = new DataSet();

        // Fill the DataSet using default values for DataTable names, etc
        da.Fill(ds);

        // Detach the SqlParameters from the command object, so they can be used again
        cmd.Parameters.Clear();

        if (mustCloseConnection)
          connection.Close();

        // Return the dataset
        return ds;
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(conn, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(SqlConnection connection, string spName, params object[] parameterValues)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteDataset(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteDataset(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlTransaction. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(trans, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(SqlTransaction transaction, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteDataset(transaction, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlTransaction
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(trans, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(SqlTransaction transaction, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(cmd, transaction.Connection, transaction, commandType, commandText, commandParameters, out mustCloseConnection);

      // Create the DataAdapter  DataSet
      using (SqlDataAdapter da = new SqlDataAdapter(cmd))
      {
        DataSet ds = new DataSet();

        // Fill the DataSet using default values for DataTable names, etc
        da.Fill(ds);

        // Detach the SqlParameters from the command object, so they can be used again
        cmd.Parameters.Clear();

        // Return the dataset
        return ds;
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified 
    /// SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// DataSet ds = ExecuteDataset(trans, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDataset(SqlTransaction transaction, string spName, params object[] parameterValues)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteDataset(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteDataset(transaction, CommandType.StoredProcedure, spName);
      }
    }

    #endregion ExecuteDataset

    #region ExecuteReader

    /// summary>
    /// This enum is used to indicate whether the connection was provided by the caller, or created by SqlHelper, so that
    /// we can set the appropriate CommandBehavior when calling ExecuteReader()
    /// /summary>
    private enum SqlConnectionOwnership
    {
      /// summary>Connection is owned and managed by SqlHelper/summary>
      Internal,
      /// summary>Connection is owned and managed by the caller/summary>
      External
    }

    public static SqlDataReader ExecuteReader(CommandType cmdType, string cmdText)
    {
      return ExecuteReader(ConnectionString, cmdType, cmdText);
    }

    public static SqlDataReader ExecuteReader(CommandType cmdType, string cmdText, params SqlParameter[] commandParameters)
    {
      return ExecuteReader(ConnectionString, cmdType, cmdText, commandParameters);
    }

    /// summary>
    /// Create and prepare a SqlCommand, and call ExecuteReader with the appropriate CommandBehavior.
    /// /summary>
    /// remarks>
    /// If we created and opened the connection, we want the connection to be closed when the DataReader is closed.
    /// 
    /// If the caller provided the connection, we want to leave it to them to manage.
    /// /remarks>
    /// param name="connection">A valid SqlConnection, on which to execute this command/param>
    /// param name="transaction">A valid SqlTransaction, or 'null'/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParameters to be associated with the command or 'null' if no parameters are required/param>
    /// param name="connectionOwnership">Indicates whether the connection parameter was provided by the caller, or created by SqlHelper/param>
    /// returns>SqlDataReader containing the results of the command/returns>
    private static SqlDataReader ExecuteReader(SqlConnection connection, SqlTransaction transaction, CommandType commandType, string commandText, SqlParameter[] commandParameters, SqlConnectionOwnership connectionOwnership)
    {
      if (connection == null) throw new ArgumentNullException("connection");

      bool mustCloseConnection = false;
      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      try
      {
        PrepareCommand(cmd, connection, transaction, commandType, commandText, commandParameters, out mustCloseConnection);

        // Create a reader
        SqlDataReader dataReader;

        // Call ExecuteReader with the appropriate CommandBehavior
        if (connectionOwnership == SqlConnectionOwnership.External)
        {
          dataReader = cmd.ExecuteReader();
        }
        else
        {
          dataReader = cmd.ExecuteReader(CommandBehavior.CloseConnection);
        }

        // Detach the SqlParameters from the command object, so they can be used again.
        // HACK: There is a problem here, the output parameter values are fletched 
        // when the reader is closed, so if the parameters are detached from the command
        // then the SqlReader can磘 set its values. 
        // When this happen, the parameters can磘 be used again in other command.
        bool canClear = true;
        foreach (SqlParameter commandParameter in cmd.Parameters)
        {
          if (commandParameter.Direction != ParameterDirection.Input)
            canClear = false;
        }

        if (canClear)
        {
          cmd.Parameters.Clear();
        }

        return dataReader;
      }
      catch
      {
        if (mustCloseConnection)
          connection.Close();
        throw;
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the database specified in 
    /// the connection string. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(connString, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(string connectionString, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteReader(connectionString, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the database specified in the connection string 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(connString, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(string connectionString, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      SqlConnection connection = null;
      try
      {
        connection = new SqlConnection(connectionString);
        connection.Open();

        // Call the private overload that takes an internally owned connection in place of the connection string
        return ExecuteReader(connection, null, commandType, commandText, commandParameters, SqlConnectionOwnership.Internal);
      }
      catch
      {
        // If we fail to return the SqlDatReader, we need to close the connection ourselves
        if (connection != null) connection.Close();
        throw;
      }

    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the database specified in 
    /// the connection string using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(connString, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(string connectionString, string spName, params object[] parameterValues)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        AssignParameterValues(commandParameters, parameterValues);

        return ExecuteReader(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteReader(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(conn, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(SqlConnection connection, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteReader(connection, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(conn, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(SqlConnection connection, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      // Pass through the call to the private overload using a null transaction value and an externally owned connection
      return ExecuteReader(connection, (SqlTransaction)null, commandType, commandText, commandParameters, SqlConnectionOwnership.External);
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(conn, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(SqlConnection connection, string spName, params object[] parameterValues)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        AssignParameterValues(commandParameters, parameterValues);

        return ExecuteReader(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteReader(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlTransaction. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(trans, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(SqlTransaction transaction, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteReader(transaction, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlTransaction
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    ///  SqlDataReader dr = ExecuteReader(trans, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(SqlTransaction transaction, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");

      // Pass through to private overload, indicating that the connection is owned by the caller
      return ExecuteReader(transaction.Connection, transaction, commandType, commandText, commandParameters, SqlConnectionOwnership.External);
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified
    /// SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// SqlDataReader dr = ExecuteReader(trans, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReader(SqlTransaction transaction, string spName, params object[] parameterValues)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        AssignParameterValues(commandParameters, parameterValues);

        return ExecuteReader(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteReader(transaction, CommandType.StoredProcedure, spName);
      }
    }

    #endregion ExecuteReader

    #region ExecuteScalar

    public static object ExecuteScalar(CommandType cmdType, string cmdText)
    {
      return ExecuteScalar(ConnectionString, cmdType, cmdText);
    }

    public static object ExecuteScalar(CommandType cmdType, string cmdText, params SqlParameter[] commandParameters)
    {
      return ExecuteScalar(ConnectionString, cmdType, cmdText, commandParameters);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a 1x1 resultset and takes no parameters) against the database specified in 
    /// the connection string. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(connString, CommandType.StoredProcedure, "GetOrderCount");
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(string connectionString, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteScalar(connectionString, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a 1x1 resultset) against the database specified in the connection string 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(connString, CommandType.StoredProcedure, "GetOrderCount", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(string connectionString, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      // Create  open a SqlConnection, and dispose of it after we are done
      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        connection.Open();

        // Call the overload that takes a connection in place of the connection string
        return ExecuteScalar(connection, commandType, commandText, commandParameters);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a 1x1 resultset) against the database specified in 
    /// the connection string using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(connString, "GetOrderCount", 24, 36);
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(string connectionString, string spName, params object[] parameterValues)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteScalar(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteScalar(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a 1x1 resultset and takes no parameters) against the provided SqlConnection. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(conn, CommandType.StoredProcedure, "GetOrderCount");
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(SqlConnection connection, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteScalar(connection, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a 1x1 resultset) against the specified SqlConnection 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(conn, CommandType.StoredProcedure, "GetOrderCount", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(SqlConnection connection, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connection == null) throw new ArgumentNullException("connection");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();

      bool mustCloseConnection = false;
      PrepareCommand(cmd, connection, (SqlTransaction)null, commandType, commandText, commandParameters, out mustCloseConnection);

      // Execute the command  return the results
      object retval = cmd.ExecuteScalar();

      // Detach the SqlParameters from the command object, so they can be used again
      cmd.Parameters.Clear();

      if (mustCloseConnection)
        connection.Close();

      return retval;
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a 1x1 resultset) against the specified SqlConnection 
    /// using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(conn, "GetOrderCount", 24, 36);
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(SqlConnection connection, string spName, params object[] parameterValues)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteScalar(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteScalar(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a 1x1 resultset and takes no parameters) against the provided SqlTransaction. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(trans, CommandType.StoredProcedure, "GetOrderCount");
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(SqlTransaction transaction, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteScalar(transaction, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a 1x1 resultset) against the specified SqlTransaction
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(trans, CommandType.StoredProcedure, "GetOrderCount", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(SqlTransaction transaction, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(cmd, transaction.Connection, transaction, commandType, commandText, commandParameters, out mustCloseConnection);

      // Execute the command  return the results
      object retval = cmd.ExecuteScalar();

      // Detach the SqlParameters from the command object, so they can be used again
      cmd.Parameters.Clear();
      return retval;
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a 1x1 resultset) against the specified
    /// SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// int orderCount = (int)ExecuteScalar(trans, "GetOrderCount", 24, 36);
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalar(SqlTransaction transaction, string spName, params object[] parameterValues)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // PPull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteScalar(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteScalar(transaction, CommandType.StoredProcedure, spName);
      }
    }

    #endregion ExecuteScalar

    #region ExecuteXmlReader

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// XmlReader r = ExecuteXmlReader(conn, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command using "FOR XML AUTO"/param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReader(SqlConnection connection, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteXmlReader(connection, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// XmlReader r = ExecuteXmlReader(conn, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command using "FOR XML AUTO"/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReader(SqlConnection connection, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (connection == null) throw new ArgumentNullException("connection");

      bool mustCloseConnection = false;
      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      try
      {
        PrepareCommand(cmd, connection, (SqlTransaction)null, commandType, commandText, commandParameters, out mustCloseConnection);

        // Create the DataAdapter  DataSet
        XmlReader retval = cmd.ExecuteXmlReader();

        // Detach the SqlParameters from the command object, so they can be used again
        cmd.Parameters.Clear();

        return retval;
      }
      catch
      {
        if (mustCloseConnection)
          connection.Close();
        throw;
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// XmlReader r = ExecuteXmlReader(conn, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="spName">The name of the stored procedure using "FOR XML AUTO"/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReader(SqlConnection connection, string spName, params object[] parameterValues)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteXmlReader(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteXmlReader(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlTransaction. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// XmlReader r = ExecuteXmlReader(trans, CommandType.StoredProcedure, "GetOrders");
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command using "FOR XML AUTO"/param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReader(SqlTransaction transaction, CommandType commandType, string commandText)
    {
      // Pass through the call providing null for the set of SqlParameters
      return ExecuteXmlReader(transaction, commandType, commandText, (SqlParameter[])null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlTransaction
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// XmlReader r = ExecuteXmlReader(trans, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command using "FOR XML AUTO"/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReader(SqlTransaction transaction, CommandType commandType, string commandText, params SqlParameter[] commandParameters)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");

      // Create a command and prepare it for execution
      SqlCommand cmd = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(cmd, transaction.Connection, transaction, commandType, commandText, commandParameters, out mustCloseConnection);

      // Create the DataAdapter  DataSet
      XmlReader retval = cmd.ExecuteXmlReader();

      // Detach the SqlParameters from the command object, so they can be used again
      cmd.Parameters.Clear();
      return retval;
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified 
    /// SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// XmlReader r = ExecuteXmlReader(trans, "GetOrders", 24, 36);
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReader(SqlTransaction transaction, string spName, params object[] parameterValues)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        return ExecuteXmlReader(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        return ExecuteXmlReader(transaction, CommandType.StoredProcedure, spName);
      }
    }

    #endregion ExecuteXmlReader

    #region FillDataset
    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the database specified in 
    /// the connection string. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(connString, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"});
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)/param>
    public static void FillDataset(string connectionString, CommandType commandType, string commandText, DataSet dataSet, string[] tableNames)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (dataSet == null) throw new ArgumentNullException("dataSet");

      // Create  open a SqlConnection, and dispose of it after we are done
      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        connection.Open();

        // Call the overload that takes a connection in place of the connection string
        FillDataset(connection, commandType, commandText, dataSet, tableNames);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the database specified in the connection string 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(connString, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"}, new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    public static void FillDataset(string connectionString, CommandType commandType,
      string commandText, DataSet dataSet, string[] tableNames,
      params SqlParameter[] commandParameters)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (dataSet == null) throw new ArgumentNullException("dataSet");
      // Create  open a SqlConnection, and dispose of it after we are done
      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        connection.Open();

        // Call the overload that takes a connection in place of the connection string
        FillDataset(connection, commandType, commandText, dataSet, tableNames, commandParameters);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the database specified in 
    /// the connection string using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// FillDataset(connString, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"}, 24);
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>  
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    public static void FillDataset(string connectionString, string spName,
      DataSet dataSet, string[] tableNames,
      params object[] parameterValues)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (dataSet == null) throw new ArgumentNullException("dataSet");
      // Create  open a SqlConnection, and dispose of it after we are done
      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        connection.Open();

        // Call the overload that takes a connection in place of the connection string
        FillDataset(connection, spName, dataSet, tableNames, parameterValues);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(conn, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"});
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>  
    public static void FillDataset(SqlConnection connection, CommandType commandType,
      string commandText, DataSet dataSet, string[] tableNames)
    {
      FillDataset(connection, commandType, commandText, dataSet, tableNames, null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(conn, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"}, new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    public static void FillDataset(SqlConnection connection, CommandType commandType,
      string commandText, DataSet dataSet, string[] tableNames,
      params SqlParameter[] commandParameters)
    {
      FillDataset(connection, null, commandType, commandText, dataSet, tableNames, commandParameters);
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// FillDataset(conn, "GetOrders", ds, new string[] {"orders"}, 24, 36);
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    public static void FillDataset(SqlConnection connection, string spName,
      DataSet dataSet, string[] tableNames,
      params object[] parameterValues)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (dataSet == null) throw new ArgumentNullException("dataSet");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        FillDataset(connection, CommandType.StoredProcedure, spName, dataSet, tableNames, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        FillDataset(connection, CommandType.StoredProcedure, spName, dataSet, tableNames);
      }
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlTransaction. 
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(trans, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"});
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    public static void FillDataset(SqlTransaction transaction, CommandType commandType,
      string commandText,
      DataSet dataSet, string[] tableNames)
    {
      FillDataset(transaction, commandType, commandText, dataSet, tableNames, null);
    }

    /// summary>
    /// Execute a SqlCommand (that returns a resultset) against the specified SqlTransaction
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(trans, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"}, new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    public static void FillDataset(SqlTransaction transaction, CommandType commandType,
      string commandText, DataSet dataSet, string[] tableNames,
      params SqlParameter[] commandParameters)
    {
      FillDataset(transaction.Connection, transaction, commandType, commandText, dataSet, tableNames, commandParameters);
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified 
    /// SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// remarks>
    /// This method provides no access to output parameters or the stored procedure's return value parameter.
    /// 
    /// e.g.: 
    /// FillDataset(trans, "GetOrders", ds, new string[]{"orders"}, 24, 36);
    /// /remarks>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    /// param name="parameterValues">An array of objects to be assigned as the input values of the stored procedure/param>
    public static void FillDataset(SqlTransaction transaction, string spName,
      DataSet dataSet, string[] tableNames,
      params object[] parameterValues)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (dataSet == null) throw new ArgumentNullException("dataSet");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If we receive parameter values, we need to figure out where they go
      if ((parameterValues != null)  (parameterValues.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Assign the provided values to these parameters based on parameter order
        AssignParameterValues(commandParameters, parameterValues);

        // Call the overload that takes an array of SqlParameters
        FillDataset(transaction, CommandType.StoredProcedure, spName, dataSet, tableNames, commandParameters);
      }
      else
      {
        // Otherwise we can just call the SP without params
        FillDataset(transaction, CommandType.StoredProcedure, spName, dataSet, tableNames);
      }
    }

    /// summary>
    /// Private helper method that execute a SqlCommand (that returns a resultset) against the specified SqlTransaction and SqlConnection
    /// using the provided parameters.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// FillDataset(conn, trans, CommandType.StoredProcedure, "GetOrders", ds, new string[] {"orders"}, new SqlParameter("@prodid", 24));
    /// /remarks>
    /// param name="connection">A valid SqlConnection/param>
    /// param name="transaction">A valid SqlTransaction/param>
    /// param name="commandType">The CommandType (stored procedure, text, etc.)/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="dataSet">A dataset wich will contain the resultset generated by the command/param>
    /// param name="tableNames">This array will be used to create table mappings allowing the DataTables to be referenced
    /// by a user defined name (probably the actual table name)
    /// /param>
    /// param name="commandParameters">An array of SqlParamters used to execute the command/param>
    private static void FillDataset(SqlConnection connection, SqlTransaction transaction, CommandType commandType,
      string commandText, DataSet dataSet, string[] tableNames,
      params SqlParameter[] commandParameters)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (dataSet == null) throw new ArgumentNullException("dataSet");

      // Create a command and prepare it for execution
      SqlCommand command = new SqlCommand();
      bool mustCloseConnection = false;
      PrepareCommand(command, connection, transaction, commandType, commandText, commandParameters, out mustCloseConnection);

      // Create the DataAdapter  DataSet
      using (SqlDataAdapter dataAdapter = new SqlDataAdapter(command))
      {

        // Add the table mappings specified by the user
        if (tableNames != null  tableNames.Length > 0)
        {
          string tableName = "Table";
          for (int index = 0; index  tableNames.Length; index++)
          {
            if (tableNames[index] == null || tableNames[index].Length == 0) throw new ArgumentException("The tableNames parameter must contain a list of tables, a value was provided as null or empty string.", "tableNames");
            dataAdapter.TableMappings.Add(tableName, tableNames[index]);
            tableName += (index + 1).ToString();
          }
        }

        // Fill the DataSet using default values for DataTable names, etc
        dataAdapter.Fill(dataSet);

        // Detach the SqlParameters from the command object, so they can be used again
        command.Parameters.Clear();
      }

      if (mustCloseConnection)
        connection.Close();
    }
    #endregion

    #region UpdateDataset
    /// summary>
    /// Executes the respective command for each inserted, updated, or deleted row in the DataSet.
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// UpdateDataset(conn, insertCommand, deleteCommand, updateCommand, dataSet, "Order");
    /// /remarks>
    /// param name="insertCommand">A valid transact-SQL statement or stored procedure to insert new records into the data source/param>
    /// param name="deleteCommand">A valid transact-SQL statement or stored procedure to delete records from the data source/param>
    /// param name="updateCommand">A valid transact-SQL statement or stored procedure used to update records in the data source/param>
    /// param name="dataSet">The DataSet used to update the data source/param>
    /// param name="tableName">The DataTable used to update the data source./param>
    public static void UpdateDataset(SqlCommand insertCommand, SqlCommand deleteCommand, SqlCommand updateCommand, DataSet dataSet, string tableName)
    {
      if (insertCommand == null) throw new ArgumentNullException("insertCommand");
      if (deleteCommand == null) throw new ArgumentNullException("deleteCommand");
      if (updateCommand == null) throw new ArgumentNullException("updateCommand");
      if (tableName == null || tableName.Length == 0) throw new ArgumentNullException("tableName");

      // Create a SqlDataAdapter, and dispose of it after we are done
      using (SqlDataAdapter dataAdapter = new SqlDataAdapter())
      {
        // Set the data adapter commands
        dataAdapter.UpdateCommand = updateCommand;
        dataAdapter.InsertCommand = insertCommand;
        dataAdapter.DeleteCommand = deleteCommand;

        // Update the dataset changes in the data source
        dataAdapter.Update(dataSet, tableName);

        // Commit all the changes made to the DataSet
        dataSet.AcceptChanges();
      }
    }
    #endregion

    #region CreateCommand
    /// summary>
    /// Simplify the creation of a Sql command object by allowing
    /// a stored procedure and optional parameters to be provided
    /// /summary>
    /// remarks>
    /// e.g.: 
    /// SqlCommand command = CreateCommand(conn, "AddCustomer", "CustomerID", "CustomerName");
    /// /remarks>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="sourceColumns">An array of string to be assigned as the source columns of the stored procedure parameters/param>
    /// returns>A valid SqlCommand object/returns>
    public static SqlCommand CreateCommand(SqlConnection connection, string spName, params string[] sourceColumns)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // Create a SqlCommand
      SqlCommand cmd = new SqlCommand(spName, connection);
      cmd.CommandType = CommandType.StoredProcedure;

      // If we receive parameter values, we need to figure out where they go
      if ((sourceColumns != null)  (sourceColumns.Length > 0))
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Assign the provided source columns to these parameters based on parameter order
        for (int index = 0; index  sourceColumns.Length; index++)
          commandParameters[index].SourceColumn = sourceColumns[index];

        // Attach the discovered parameters to the SqlCommand object
        AttachParameters(cmd, commandParameters);
      }

      return cmd;
    }
    #endregion

    #region ExecuteNonQueryTypedParams
    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns no resultset) against the database specified in 
    /// the connection string using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on row values.
    /// /summary>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQueryTypedParams(String connectionString, String spName, DataRow dataRow)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteNonQuery(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteNonQuery(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns no resultset) against the specified SqlConnection 
    /// using the dataRow column values as the stored procedure's parameters values. 
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on row values.
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQueryTypedParams(SqlConnection connection, String spName, DataRow dataRow)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteNonQuery(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteNonQuery(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns no resultset) against the specified
    /// SqlTransaction using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on row values.
    /// /summary>
    /// param name="transaction">A valid SqlTransaction object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An int representing the number of rows affected by the command/returns>
    public static int ExecuteNonQueryTypedParams(SqlTransaction transaction, String spName, DataRow dataRow)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // Sf the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteNonQuery(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteNonQuery(transaction, CommandType.StoredProcedure, spName);
      }
    }
    #endregion

    #region ExecuteDatasetTypedParams
    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the database specified in 
    /// the connection string using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on row values.
    /// /summary>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDatasetTypedParams(string connectionString, String spName, DataRow dataRow)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      //If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteDataset(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteDataset(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the dataRow column values as the store procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on row values.
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDatasetTypedParams(SqlConnection connection, String spName, DataRow dataRow)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteDataset(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteDataset(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlTransaction 
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on row values.
    /// /summary>
    /// param name="transaction">A valid SqlTransaction object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>A dataset containing the resultset generated by the command/returns>
    public static DataSet ExecuteDatasetTypedParams(SqlTransaction transaction, String spName, DataRow dataRow)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteDataset(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteDataset(transaction, CommandType.StoredProcedure, spName);
      }
    }

    #endregion

    #region ExecuteReaderTypedParams
    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the database specified in 
    /// the connection string using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReaderTypedParams(String connectionString, String spName, DataRow dataRow)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteReader(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteReader(connectionString, CommandType.StoredProcedure, spName);
      }
    }


    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReaderTypedParams(SqlConnection connection, String spName, DataRow dataRow)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteReader(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteReader(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlTransaction 
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="transaction">A valid SqlTransaction object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>A SqlDataReader containing the resultset generated by the command/returns>
    public static SqlDataReader ExecuteReaderTypedParams(SqlTransaction transaction, String spName, DataRow dataRow)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteReader(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteReader(transaction, CommandType.StoredProcedure, spName);
      }
    }
    #endregion

    #region ExecuteScalarTypedParams
    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a 1x1 resultset) against the database specified in 
    /// the connection string using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalarTypedParams(String connectionString, String spName, DataRow dataRow)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connectionString, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteScalar(connectionString, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteScalar(connectionString, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a 1x1 resultset) against the specified SqlConnection 
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalarTypedParams(SqlConnection connection, String spName, DataRow dataRow)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteScalar(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteScalar(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a 1x1 resultset) against the specified SqlTransaction
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="transaction">A valid SqlTransaction object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An object containing the value in the 1x1 resultset generated by the command/returns>
    public static object ExecuteScalarTypedParams(SqlTransaction transaction, String spName, DataRow dataRow)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteScalar(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteScalar(transaction, CommandType.StoredProcedure, spName);
      }
    }
    #endregion

    #region ExecuteXmlReaderTypedParams
    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection 
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReaderTypedParams(SqlConnection connection, String spName, DataRow dataRow)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteXmlReader(connection, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteXmlReader(connection, CommandType.StoredProcedure, spName);
      }
    }

    /// summary>
    /// Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlTransaction 
    /// using the dataRow column values as the stored procedure's parameters values.
    /// This method will query the database to discover the parameters for the 
    /// stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
    /// /summary>
    /// param name="transaction">A valid SqlTransaction object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="dataRow">The dataRow used to hold the stored procedure's parameter values./param>
    /// returns>An XmlReader containing the resultset generated by the command/returns>
    public static XmlReader ExecuteXmlReaderTypedParams(SqlTransaction transaction, String spName, DataRow dataRow)
    {
      if (transaction == null) throw new ArgumentNullException("transaction");
      if (transaction != null  transaction.Connection == null) throw new ArgumentException("The transaction was rollbacked or commited, please provide an open transaction.", "transaction");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      // If the row has values, the store procedure parameters must be initialized
      if (dataRow != null  dataRow.ItemArray.Length > 0)
      {
        // Pull the parameters for this stored procedure from the parameter cache (or discover them  populate the cache)
        SqlParameter[] commandParameters = SqlHelperParameterCache.GetSpParameterSet(transaction.Connection, spName);

        // Set the parameters values
        AssignParameterValues(commandParameters, dataRow);

        return SqlHelper.ExecuteXmlReader(transaction, CommandType.StoredProcedure, spName, commandParameters);
      }
      else
      {
        return SqlHelper.ExecuteXmlReader(transaction, CommandType.StoredProcedure, spName);
      }
    }
    #endregion

  }

  /// summary>
  /// SqlHelperParameterCache provides functions to leverage a static cache of procedure parameters, and the
  /// ability to discover parameters for stored procedures at run-time.
  /// /summary>
  public sealed class SqlHelperParameterCache
  {
    #region private methods, variables, and constructors

    //Since this class provides only static methods, make the default constructor private to prevent 
    //instances from being created with "new SqlHelperParameterCache()"
    private SqlHelperParameterCache() { }

    private static Hashtable paramCache = Hashtable.Synchronized(new Hashtable());

    /// summary>
    /// Resolve at run time the appropriate set of SqlParameters for a stored procedure
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="includeReturnValueParameter">Whether or not to include their return value parameter/param>
    /// returns>The parameter array discovered./returns>
    private static SqlParameter[] DiscoverSpParameterSet(SqlConnection connection, string spName, bool includeReturnValueParameter)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      SqlCommand cmd = new SqlCommand(spName, connection);
      cmd.CommandType = CommandType.StoredProcedure;

      connection.Open();
      SqlCommandBuilder.DeriveParameters(cmd);
      connection.Close();

      if (!includeReturnValueParameter)
      {
        cmd.Parameters.RemoveAt(0);
      }

      SqlParameter[] discoveredParameters = new SqlParameter[cmd.Parameters.Count];

      cmd.Parameters.CopyTo(discoveredParameters, 0);

      // Init the parameters with a DBNull value
      foreach (SqlParameter discoveredParameter in discoveredParameters)
      {
        discoveredParameter.Value = DBNull.Value;
      }
      return discoveredParameters;
    }

    /// summary>
    /// Deep copy of cached SqlParameter array
    /// /summary>
    /// param name="originalParameters">/param>
    /// returns>/returns>
    private static SqlParameter[] CloneParameters(SqlParameter[] originalParameters)
    {
      SqlParameter[] clonedParameters = new SqlParameter[originalParameters.Length];

      for (int i = 0, j = originalParameters.Length; i  j; i++)
      {
        clonedParameters[i] = (SqlParameter)((ICloneable)originalParameters[i]).Clone();
      }

      return clonedParameters;
    }

    #endregion private methods, variables, and constructors

    #region caching functions

    /// summary>
    /// Add parameter array to the cache
    /// /summary>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// param name="commandParameters">An array of SqlParamters to be cached/param>
    public static void CacheParameterSet(string connectionString, string commandText, params SqlParameter[] commandParameters)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (commandText == null || commandText.Length == 0) throw new ArgumentNullException("commandText");

      string hashKey = connectionString + ":" + commandText;

      paramCache[hashKey] = commandParameters;
    }

    /// summary>
    /// Retrieve a parameter array from the cache
    /// /summary>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="commandText">The stored procedure name or T-SQL command/param>
    /// returns>An array of SqlParamters/returns>
    public static SqlParameter[] GetCachedParameterSet(string connectionString, string commandText)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (commandText == null || commandText.Length == 0) throw new ArgumentNullException("commandText");

      string hashKey = connectionString + ":" + commandText;

      SqlParameter[] cachedParameters = paramCache[hashKey] as SqlParameter[];
      if (cachedParameters == null)
      {
        return null;
      }
      else
      {
        return CloneParameters(cachedParameters);
      }
    }

    #endregion caching functions

    #region Parameter Discovery Functions

    /// summary>
    /// Retrieves the set of SqlParameters appropriate for the stored procedure
    /// /summary>
    /// remarks>
    /// This method will query the database for this information, and then store it in a cache for future requests.
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// returns>An array of SqlParameters/returns>
    public static SqlParameter[] GetSpParameterSet(string connectionString, string spName)
    {
      return GetSpParameterSet(connectionString, spName, false);
    }

    /// summary>
    /// Retrieves the set of SqlParameters appropriate for the stored procedure
    /// /summary>
    /// remarks>
    /// This method will query the database for this information, and then store it in a cache for future requests.
    /// /remarks>
    /// param name="connectionString">A valid connection string for a SqlConnection/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="includeReturnValueParameter">A bool value indicating whether the return value parameter should be included in the results/param>
    /// returns>An array of SqlParameters/returns>
    public static SqlParameter[] GetSpParameterSet(string connectionString, string spName, bool includeReturnValueParameter)
    {
      if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException("connectionString");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      using (SqlConnection connection = new SqlConnection(connectionString))
      {
        return GetSpParameterSetInternal(connection, spName, includeReturnValueParameter);
      }
    }

    /// summary>
    /// Retrieves the set of SqlParameters appropriate for the stored procedure
    /// /summary>
    /// remarks>
    /// This method will query the database for this information, and then store it in a cache for future requests.
    /// /remarks>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// returns>An array of SqlParameters/returns>
    internal static SqlParameter[] GetSpParameterSet(SqlConnection connection, string spName)
    {
      return GetSpParameterSet(connection, spName, false);
    }

    /// summary>
    /// Retrieves the set of SqlParameters appropriate for the stored procedure
    /// /summary>
    /// remarks>
    /// This method will query the database for this information, and then store it in a cache for future requests.
    /// /remarks>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="includeReturnValueParameter">A bool value indicating whether the return value parameter should be included in the results/param>
    /// returns>An array of SqlParameters/returns>
    internal static SqlParameter[] GetSpParameterSet(SqlConnection connection, string spName, bool includeReturnValueParameter)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      using (SqlConnection clonedConnection = (SqlConnection)((ICloneable)connection).Clone())
      {
        return GetSpParameterSetInternal(clonedConnection, spName, includeReturnValueParameter);
      }
    }

    /// summary>
    /// Retrieves the set of SqlParameters appropriate for the stored procedure
    /// /summary>
    /// param name="connection">A valid SqlConnection object/param>
    /// param name="spName">The name of the stored procedure/param>
    /// param name="includeReturnValueParameter">A bool value indicating whether the return value parameter should be included in the results/param>
    /// returns>An array of SqlParameters/returns>
    private static SqlParameter[] GetSpParameterSetInternal(SqlConnection connection, string spName, bool includeReturnValueParameter)
    {
      if (connection == null) throw new ArgumentNullException("connection");
      if (spName == null || spName.Length == 0) throw new ArgumentNullException("spName");

      string hashKey = connection.ConnectionString + ":" + spName + (includeReturnValueParameter ? ":include ReturnValue Parameter" : "");

      SqlParameter[] cachedParameters;

      cachedParameters = paramCache[hashKey] as SqlParameter[];
      if (cachedParameters == null)
      {
        SqlParameter[] spParameters = DiscoverSpParameterSet(connection, spName, includeReturnValueParameter);
        paramCache[hashKey] = spParameters;
        cachedParameters = spParameters;
      }

      return CloneParameters(cachedParameters);
    }

    #endregion Parameter Discovery Functions

  }

您可能感興趣的文章:
  • php中分頁及SqlHelper類用法實(shí)例
  • C#實(shí)現(xiàn)較為實(shí)用的SQLhelper
  • C#基于SQLiteHelper類似SqlHelper類實(shí)現(xiàn)存取Sqlite數(shù)據(jù)庫的方法
  • c#中SqlHelper封裝SqlDataReader的方法
  • C#實(shí)現(xiàn)操作MySql數(shù)據(jù)層類MysqlHelper實(shí)例
  • 四個(gè)常用的.NET的SQLHELPER方法實(shí)例
  • 自己編寫sqlhelper類示例分享
  • c# SQLHelper(for winForm)實(shí)現(xiàn)代碼
  • asp.net SqlHelper數(shù)據(jù)訪問層的使用
  • C# SqlHelper應(yīng)用開發(fā)學(xué)習(xí)

標(biāo)簽:宜春 本溪 麗江 婁底 吉林 重慶 河南 汕頭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《微軟官方SqlHelper類 數(shù)據(jù)庫輔助操作類 原創(chuàng)》,本文關(guān)鍵詞  微軟,官方,SqlHelper,類,數(shù)據(jù)庫,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《微軟官方SqlHelper類 數(shù)據(jù)庫輔助操作類 原創(chuàng)》相關(guān)的同類信息!
  • 本頁收集關(guān)于微軟官方SqlHelper類 數(shù)據(jù)庫輔助操作類 原創(chuàng)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    好了av中文字幕在线| 久久美欧人妻少妇一区二区三区| 久草电影免费在线观看| 大陆av手机在线观看| 国产高清在线观看1区2区| 亚洲中文字幕人妻一区| 青青热久免费精品视频在线观看| 国产视频精品资源网站| av日韩在线观看大全| 视频一区 二区 三区 综合| 国产精品女邻居小骚货| 日本人妻少妇18—xx| av天堂加勒比在线| 欧美成一区二区三区四区| 自拍偷拍日韩欧美一区二区| 青青青视频自偷自拍38碰| 久久久久久久亚洲午夜综合福利| 午夜精品亚洲精品五月色| 欧美成一区二区三区四区| av在线播放国产不卡| 欧美视频综合第一页| 久久尻中国美女视频| 欧美日韩一级黄片免费观看| 日韩美在线观看视频黄| 国产成人一区二区三区电影网站| 制服丝袜在线人妻中文字幕| av手机在线观播放网站| 久久久91蜜桃精品ad| 中文字幕AV在线免费看 | a v欧美一区=区三区| 一区二区麻豆传媒黄片| 一本久久精品一区二区| 岛国黄色大片在线观看| 狠狠操操操操操操操操操| 天堂女人av一区二区| 欧美中国日韩久久精品| 大鸡巴操b视频在线| 欧美精品伦理三区四区| 欧美成人小视频在线免费看| 欧美成人黄片一区二区三区| 区一区二区三国产中文字幕| 亚洲av色香蕉一区二区三区| 人人妻人人爽人人添夜| 日韩一区二区三区三州| 黄色的网站在线免费看| 91国产资源在线视频| 国产亚洲欧美视频网站| 又色又爽又黄的美女裸体| 成人av中文字幕一区| av成人在线观看一区| 欧美 亚洲 另类综合| 亚洲在线观看中文字幕av| 国产黄色片在线收看| 久久人人做人人妻人人玩精品vr| 午夜极品美女福利视频| 欧美亚洲国产成人免费在线 | 天天操天天干天天艹| 最新国产亚洲精品中文在线| 亚洲人人妻一区二区三区| 久久综合老鸭窝色综合久久| 九色视频在线观看免费| 少妇人妻二三区视频| 春色激情网欧美成人| 91天堂天天日天天操| 天天干天天啪天天舔| 777奇米久久精品一区| 午夜av一区二区三区| 清纯美女在线观看国产| 日韩熟女av天堂系列| 伊人开心婷婷国产av| 亚洲中文精品人人免费| 免费无码人妻日韩精品一区二区| 日韩av大胆在线观看| 欧美熟妇一区二区三区仙踪林| 亚洲欧美综合在线探花| 欧洲精品第一页欧洲精品亚洲| 中文字幕在线乱码一区二区| 在线观看911精品国产| 自拍偷拍亚洲精品第2页| 亚洲高清国产拍青青草原| 国产露脸对白在线观看| gogo国模私拍视频| 视频在线免费观看你懂得| 欧美黑人性猛交xxxxⅹooo| 人妻丝袜诱惑我操她视频| 成年美女黄网站18禁久久| 青青擦在线视频国产在线| 中文字幕视频一区二区在线观看| 欧美中文字幕一区最新网址| 97人妻无码AV碰碰视频| 9色在线视频免费观看| 超碰97人人澡人人| 福利视频网久久91| 国产精品一区二区久久久av| 亚洲精品 欧美日韩| 亚洲中文精品字幕在线观看| 五月婷婷在线观看视频免费| 人妻少妇av在线观看| 天天日天天爽天天爽| 91欧美在线免费观看| 亚洲另类图片蜜臀av| 亚洲国产欧美一区二区三区…| 91中文字幕最新合集| 97精品综合久久在线| 自拍偷拍 国产资源| 成人sm视频在线观看| 免费看国产又粗又猛又爽又黄视频| 日本午夜爽爽爽爽爽视频在线观看| 五十路熟女人妻一区二区9933| 97人人妻人人澡人人爽人人精品| 色哟哟在线网站入口| 亚洲国产最大av综合| 亚洲码av无色中文| 亚洲免费视频欧洲免费视频| 天堂v男人视频在线观看| 久久久久久久久久久免费女人| 亚洲 国产 成人 在线| 亚洲特黄aaaa片| 婷婷五月亚洲综合在线| 中文字幕av第1页中文字幕| 亚洲午夜精品小视频| 黄色资源视频网站日韩| 亚洲在线一区二区欧美| 好吊操视频这里只有精品| lutube在线成人免费看| yellow在线播放av啊啊啊 | 国产刺激激情美女网站| 一区二区三区四区五区性感视频| 中英文字幕av一区| 亚洲另类在线免费观看| 久草视频 久草视频2| 国产性感美女福利视频| 国产日韩av一区二区在线| 很黄很污很色的午夜网站在线观看| 国产大鸡巴大鸡巴操小骚逼小骚逼| 午夜激情高清在线观看| 天天操夜夜操天天操天天操| 青青草人人妻人人妻| 国产使劲操在线播放| 国产麻豆精品人妻av| 一二三区在线观看视频| 91久久精品色伊人6882| 东京热男人的av天堂| 在线观看免费视频色97| 日韩av有码一区二区三区4| www天堂在线久久| 亚洲天堂成人在线观看视频网站| 不卡一不卡二不卡三| 男人插女人视频网站| 亚洲av色图18p| 人妻无码色噜噜狠狠狠狠色| 午夜美女福利小视频| 亚洲一区二区三区五区| 色天天天天射天天舔| 日韩伦理短片在线观看| 午夜精彩视频免费一区| 欧美一区二区三区乱码在线播放 | 中文字幕在线观看国产片| 久久艹在线观看视频| 大鸡巴操娇小玲珑的女孩逼| 日日日日日日日日夜夜夜夜夜夜| 精品黑人巨大在线一区| 青青青青爽手机在线| 91九色国产熟女一区二区| 77久久久久国产精产品| 天天干天天操天天扣| 人妻丝袜诱惑我操她视频| 精彩视频99免费在线| 丰满的继坶3中文在线观看| 十八禁在线观看地址免费| 91试看福利一分钟| 爱有来生高清在线中文字幕| 亚洲av无码成人精品区辽| 狠狠鲁狠狠操天天晚上干干| av天堂中文免费在线| 亚洲综合色在线免费观看| 日韩在线中文字幕色| 四虎永久在线精品免费区二区| 欧美精品资源在线观看| 欧美日韩精品永久免费网址 | 日韩不卡中文在线视频网站| 国内精品在线播放第一页| 成年人免费看在线视频| 亚洲人妻国产精品综合| 端庄人妻堕落挣扎沉沦| 一本一本久久a久久精品综合不卡| 亚洲的电影一区二区三区| 亚洲图库另类图片区| 日本性感美女视频网站| 美女少妇亚洲精选av| 中文字幕 亚洲av| av亚洲中文天堂字幕网| 久久久精品欧洲亚洲av| 日本一本午夜在线播放| 日本人妻精品久久久久久| 黄片大全在线观看观看| 国产精品久久久久久久女人18| 国产片免费观看在线观看| 沈阳熟妇28厘米大战黑人| 一级黄片久久久久久久久| 福利视频网久久91| 欧美视频一区免费在线| 国产使劲操在线播放| 91国产在线视频免费观看| 中文字幕无码日韩专区免费| 天天躁日日躁狠狠躁av麻豆| 日本在线不卡免费视频| 丰满少妇翘臀后进式| 天天日天天透天天操| 激情综合治理六月婷婷| 欧洲黄页网免费观看| AV无码一区二区三区不卡| 精内国产乱码久久久久久| 欧美一区二区三区乱码在线播放| 亚洲高清一区二区三区视频在线| 天天干天天插天天谢| 亚洲成人线上免费视频观看| 亚洲欧美激情人妻偷拍| 亚洲va国产va欧美va在线| 99婷婷在线观看视频| 久久丁香婷婷六月天| 国产va在线观看精品| 亚洲综合另类精品小说| 亚洲国产成人无码麻豆艾秋| 红桃av成人在线观看| 福利视频一区二区三区筱慧 | 天天日天天透天天操| 欧美另类重口味极品在线观看| 成熟丰满熟妇高潮xx×xx | 伊人网中文字幕在线视频| 日本高清成人一区二区三区| 综合页自拍视频在线播放| 亚洲熟妇x久久av久久| 一区二区麻豆传媒黄片| 男人操女人的逼免费视频| 国产精品视频资源在线播放| 欧美日韩不卡一区不区二区| 高清成人av一区三区| 婷婷五月亚洲综合在线| 激情图片日韩欧美人妻| 国产片免费观看在线观看| 亚洲另类图片蜜臀av| 区一区二区三国产中文字幕| 99视频精品全部15| 亚洲国产成人在线一区| 中文字幕一区二 区二三区四区| 中国把吊插入阴蒂的视频| 青青青青青青青青青国产精品视频| 天天爽夜夜爽人人爽QC| 大屁股熟女一区二区三区| 人妻少妇亚洲精品中文字幕| 欧美一级视频一区二区| 四虎永久在线精品免费区二区| 日日操夜夜撸天天干| 亚洲高清视频在线不卡| 真实国模和老外性视频| 亚洲高清国产自产av| 午夜青青草原网在线观看| 综合激情网激情五月五月婷婷| 在线观看视频污一区| 中文字幕人妻av在线观看| 日韩欧美国产一区ab| av资源中文字幕在线观看| 五十路熟女人妻一区二| 黑人乱偷人妻中文字幕| 国产一区二区久久久裸臀| 欧洲精品第一页欧洲精品亚洲| 色综合色综合色综合色| 五色婷婷综合狠狠爱| 天天干天天爱天天色| 亚洲av香蕉一区区二区三区犇| 在线免费观看靠比视频的网站| yy96视频在线观看| 快插进小逼里大鸡吧视频| 国产精品一二三不卡带免费视频| 亚洲 欧美 精品 激情 偷拍| 性感美女福利视频网站| 91p0rny九色露脸熟女| 女警官打开双腿沦为性奴| 天天干夜夜操啊啊啊| 亚洲欧美清纯唯美另类| 和邻居少妇愉情中文字幕| 97人人妻人人澡人人爽人人精品 | 538精品在线观看视频| 日本人妻少妇18—xx| 秋霞午夜av福利经典影视| 免费手机黄页网址大全| 天天日天天日天天射天天干| 亚洲欧美自拍另类图片| 亚洲图库另类图片区| 美女操逼免费短视频下载链接| www天堂在线久久| 97少妇精品在线观看| 亚洲福利精品视频在线免费观看| 1769国产精品视频免费观看| 中文字幕在线欧美精品| 在线观看av亚洲情色| 888欧美视频在线| 午夜国产免费福利av| 91福利视频免费在线观看| 国产精品自拍视频大全| 91老师蜜桃臀大屁股| 亚洲成人国产综合一区| 福利一二三在线视频观看| 国产亚州色婷婷久久99精品| 国产实拍勾搭女技师av在线| 538精品在线观看视频| 日韩av熟妇在线观看| 日本后入视频在线观看| 在线成人日韩av电影| 伊人综合免费在线视频| 影音先锋女人av噜噜色| 欧美区一区二区三视频| 91精品资源免费观看| 成年人啪啪视频在线观看| 在线亚洲天堂色播av电影| 天天日天天天天天天天天天天| 亚洲 图片 欧美 图片| 大肉大捧一进一出好爽在线视频| www日韩a级s片av| 晚上一个人看操B片| 精品视频国产在线观看| 天天操天天干天天艹| 成年人中文字幕在线观看| 2022国产精品视频| 欧美va亚洲va天堂va| 亚洲推理片免费看网站| 国产亚洲四十路五十路| 人人妻人人澡欧美91精品| 91精品激情五月婷婷在线| 国产欧美精品一区二区高清| 亚洲最大黄了色网站| 成人资源在线观看免费官网| 精品人人人妻人人玩日产欧| 日本成人不卡一区二区| 亚洲综合一区成人在线| 2021最新热播中文字幕| 不卡一不卡二不卡三| av网址在线播放大全| 欧美怡红院视频在线观看| 中文字幕乱码人妻电影| 把腿张开让我插进去视频| 人妻少妇av在线观看| 国产高清在线在线视频| 晚上一个人看操B片| 男人和女人激情视频| 人妻无码中文字幕专区| 一区二区三区四区视频在线播放| 国产精品久久久黄网站| 五十路熟女人妻一区二| 人妻久久久精品69系列| 欧美日韩精品永久免费网址| 亚洲熟女久久久36d| 亚洲精品精品国产综合| 中国黄色av一级片| 在线播放一区二区三区Av无码| 日韩中文字幕福利av| 色综合色综合色综合色| 亚洲欧美在线视频第一页| 99精品视频在线观看婷婷| 婷婷激情四射在线观看视频| 视频一区 二区 三区 综合| 日韩欧美亚洲熟女人妻| 黄色片黄色片wyaa| 黄色片一级美女黄色片| 人妻丝袜榨强中文字幕| 日本丰满熟妇BBXBBXHD| 美女福利写真在线观看视频| 亚洲av男人的天堂你懂的| 熟女视频一区,二区,三区| 欧美成人黄片一区二区三区| 人妻少妇精品久久久久久| 国产日韩精品电影7777| 日韩人妻xxxxx| 精品国产在线手机在线| 青青热久免费精品视频在线观看| 午夜在线一区二区免费| 天堂av中文在线最新版| 日本a级视频老女人| 91精品一区二区三区站长推荐| 女人精品内射国产99| 精品国产亚洲av一淫| 天天日天天敢天天干| 久久久制服丝袜中文字幕| 国产精品探花熟女在线观看| 黄色三级网站免费下载| 午夜91一区二区三区| 天天操天天干天天艹| 国产精彩对白一区二区三区| 骚货自慰被发现爆操| 91人妻人人做人人爽在线| 日韩精品中文字幕播放| 精品成人午夜免费看| 97香蕉碰碰人妻国产樱花| 日韩北条麻妃一区在线| 男人天堂av天天操| 中文字幕在线视频一区二区三区| 国产福利在线视频一区| 大肉大捧一进一出好爽在线视频| 色伦色伦777国产精品| 视频一区 二区 三区 综合| 一二三区在线观看视频| 亚洲激情偷拍一区二区| 天天日天天干天天要| 色97视频在线播放| 欧美日韩激情啪啪啪| 麻豆性色视频在线观看| 久久久久只精品国产三级| 好吊操视频这里只有精品| 熟女人妻在线观看视频| 国产一区成人在线观看视频| 亚洲另类图片蜜臀av| 特级欧美插插插插插bbbbb| 免费av岛国天堂网站| 日曰摸日日碰夜夜爽歪歪| 国产aⅴ一线在线观看| 中文字幕无码日韩专区免费| 亚洲午夜伦理视频在线| 日韩欧美一级黄片亚洲| 漂亮 人妻被中出中文| 亚洲 中文 自拍 无码| 亚洲黄色av网站免费播放| 亚洲国产精品久久久久久6| 女生被男生插的视频网站| 青青青青爽手机在线| 影音先锋女人av噜噜色| 亚洲成人熟妇一区二区三区| 青青草精品在线视频观看| 欧美精产国品一二三产品区别大吗| 精品高潮呻吟久久av| 五月激情婷婷久久综合网| 最新91精品视频在线| 亚洲国产中文字幕啊啊啊不行了 | 日韩欧美制服诱惑一区在线| 午夜精品一区二区三区城中村| 国产高清在线在线视频| 国产+亚洲+欧美+另类| 亚洲精品亚洲人成在线导航| 人妻少妇精品久久久久久| 东京热男人的av天堂| 人人妻人人爱人人草| 2020国产在线不卡视频| 国产福利小视频大全| 日韩欧美制服诱惑一区在线| 国产女孩喷水在线观看| 国产视频网站国产视频| 亚洲超碰97人人做人人爱| 亚洲国产40页第21页| 国语对白xxxx乱大交| 懂色av之国产精品| 色偷偷伊人大杳蕉综合网| 国产午夜亚洲精品麻豆| 久精品人妻一区二区三区 | 亚洲国产美女一区二区三区软件| 五月天久久激情视频| 天天干天天日天天干天天操| 天天干天天操天天玩天天射| 亚洲图库另类图片区| 国产av国片精品一区二区| 国产丰满熟女成人视频| 毛片av在线免费看| 中文字幕av一区在线观看| 男人天堂av天天操| 中国产一级黄片免费视频播放| 国产免费高清视频视频| 97欧洲一区二区精品免费| 日韩欧美国产一区不卡| 18禁污污污app下载| 一区二区三区日韩久久| 日本免费一级黄色录像| 欧美aa一级一区三区四区| 欧美精品欧美极品欧美视频 | 久久久久久国产精品| 国产乱弄免费视频观看| 小穴多水久久精品免费看| yy6080国产在线视频| 天天操天天操天天碰| 天干天天天色天天日天天射| 熟女人妻三十路四十路人妻斩| 婷婷久久久综合中文字幕| 欧美久久久久久三级网| 午夜精品在线视频一区| 在线观看免费视频色97| 欧美成人黄片一区二区三区 | 国产精品国产三级麻豆| 91人妻精品一区二区久久| 亚洲精品色在线观看视频| 日韩精品激情在线观看| 18禁网站一区二区三区四区| 综合一区二区三区蜜臀| 蜜臀成人av在线播放| 欧美麻豆av在线播放| 最新欧美一二三视频| 亚洲欧美激情人妻偷拍| 国产高清97在线观看视频| 国产又色又刺激在线视频 | 五十路熟女人妻一区二区9933| 天天干天天操天天爽天天摸| 亚洲国产40页第21页| 东游记中文字幕版哪里可以看到| 北条麻妃高跟丝袜啪啪| 在线观看视频 你懂的| 亚洲精品午夜久久久久| 2021天天色天天干| 大屁股熟女一区二区三区| 国产欧美精品一区二区高清| 91色网站免费在线观看| 在线免费观看视频一二区| 国产日韩欧美视频在线导航| 国产一区二区视频观看| 久久久极品久久蜜桃| 国产美女一区在线观看| 无忧传媒在线观看视频| 天天做天天干天天舔| 欧美xxx成人在线| 中文字幕一区二区人妻电影冢本| 日韩精品中文字幕福利| 97超碰国语国产97超碰| 国产av自拍偷拍盛宴| 午夜成午夜成年片在线观看| 青青热久免费精品视频在线观看| 天天射,天天操,天天说| 国产麻豆精品人妻av| 大鸡巴操娇小玲珑的女孩逼| 97香蕉碰碰人妻国产樱花| 亚洲va国产va欧美va在线| 一区二区三区 自拍偷拍| 天天干天天操天天扣| 亚洲视频乱码在线观看| 亚洲1卡2卡三卡4卡在线观看| 久久丁香婷婷六月天| 美女福利视频网址导航| 日本人妻精品久久久久久| 精品成人午夜免费看| 91国产在线视频免费观看| 国产成人精品福利短视频| 成人国产激情自拍三区| av亚洲中文天堂字幕网| 中国老熟女偷拍第一页| 激情综合治理六月婷婷| 黑人乱偷人妻中文字幕| 激情国产小视频在线| 国产不卡av在线免费| 国产在线一区二区三区麻酥酥| 国产高清女主播在线| 欧美一区二区三区四区性视频| 国产美女午夜福利久久| 久久久精品精品视频视频| av日韩在线免费播放| 欧美80老妇人性视频| 亚洲欧美一区二区三区电影| 亚洲视频在线视频看视频在线| 红杏久久av人妻一区| 亚洲另类在线免费观看| 亚洲欧美自拍另类图片| 亚洲国产精品美女在线观看| 熟女人妻在线中出观看完整版| 999久久久久999| 好吊操视频这里只有精品| 丰满少妇翘臀后进式| 国内精品在线播放第一页| 成人动漫大肉棒插进去视频| AV无码一区二区三区不卡| 日韩精品电影亚洲一区| 老鸭窝日韩精品视频观看| 国产精品国色综合久久| 欧美视频不卡一区四区| 亚欧在线视频你懂的| 91国语爽死我了不卡| 国产精品一二三不卡带免费视频| 中文字幕1卡1区2区3区| 真实国模和老外性视频| 40道精品招牌菜特色| 美女福利写真在线观看视频| 精品乱子伦一区二区三区免费播 | 天天操夜夜操天天操天天操| jiujiure精品视频在线| 午夜国产福利在线观看| 搡老熟女一区二区在线观看| 大胸性感美女羞爽操逼毛片| av中文字幕在线观看第三页| 91超碰青青中文字幕| 欧美80老妇人性视频| 家庭女教师中文字幕在线播放| 国产精品入口麻豆啊啊啊 | 国产精品欧美日韩区二区| 人妻久久久精品69系列| 男人靠女人的逼视频| 爆乳骚货内射骚货内射在线| 亚洲综合色在线免费观看| 精品成人啪啪18免费蜜臀| 91极品新人『兔兔』精品新作 | 青青青青操在线观看免费| 91精品综合久久久久3d动漫| 国产又粗又硬又猛的毛片视频| 国产精品久久久久久久久福交| 绝色少妇高潮3在线观看| 欧美特色aaa大片| 成人久久精品一区二区三区| 国产大鸡巴大鸡巴操小骚逼小骚逼| 天天插天天狠天天操| 欧美日韩人妻久久精品高清国产| 91人妻人人做人人爽在线| 精品成人啪啪18免费蜜臀| 青青尤物在线观看视频网站| 阿v天堂2014 一区亚洲| eeuss鲁片一区二区三区| 亚洲一级av无码一级久久精品| 韩国男女黄色在线观看| 国产精品欧美日韩区二区| 国产内射中出在线观看| 国产成人精品av网站| 亚洲人人妻一区二区三区| 在线观看黄色成年人网站| 日韩美女综合中文字幕pp| 中文 成人 在线 视频| 另类av十亚洲av| 亚洲综合一区成人在线| 日本女大学生的黄色小视频| 国产精品视频资源在线播放| 边摸边做超爽毛片18禁色戒| 丝袜国产专区在线观看| 偷拍自拍福利视频在线观看| 日韩影片一区二区三区不卡免费| 中文字日产幕乱六区蜜桃| av一本二本在线观看| 国产片免费观看在线观看| 午夜国产福利在线观看| 最新国产精品网址在线观看| 啊啊啊视频试看人妻| 欧美爆乳肉感大码在线观看| 免费岛国喷水视频在线观看| 老司机在线精品福利视频| 精品视频中文字幕在线播放| 亚洲一区二区三区av网站| 亚洲国产精品黑丝美女| 高清成人av一区三区| 99久久超碰人妻国产| 天天日天天鲁天天操| 日日摸夜夜添夜夜添毛片性色av| 亚洲va欧美va人人爽3p| 成人性爱在线看四区| 亚洲av日韩av网站| 久久丁香花五月天色婷婷| 亚洲av无乱一区二区三区性色| av中文字幕网址在线| 亚洲精品久久视频婷婷| 亚洲伊人色一综合网| 日韩av有码中文字幕| 青青青爽视频在线播放| 国产精品视频一区在线播放| 国内资源最丰富的网站| 天天操天天干天天日狠狠插 | 亚洲欧美自拍另类图片| 久久机热/这里只有| 亚洲欧美激情国产综合久久久| 国产成人精品久久二区91| 成人蜜桃美臀九一一区二区三区| 欧美成人一二三在线网| 午夜美女少妇福利视频| 亚洲中文字幕校园春色| 日韩北条麻妃一区在线| 日本a级视频老女人| 成人高潮aa毛片免费| 制服丝袜在线人妻中文字幕| 欧美一级片免费在线成人观看| 少妇被强干到高潮视频在线观看| 91精品国产综合久久久蜜| 美女 午夜 在线视频| 日本少妇的秘密免费视频| 一区二区三区日韩久久| 激情内射在线免费观看| 亚洲国产欧美一区二区丝袜黑人| 经典亚洲伊人第一页| 中国黄片视频一区91| 日韩特级黄片高清在线看| 国产熟妇人妻ⅹxxxx麻豆| 激情国产小视频在线| 亚洲美女高潮喷浆视频| 超鹏97历史在线观看| 亚洲最大黄了色网站| 天天摸天天日天天操| yy6080国产在线视频| free性日本少妇| 青青擦在线视频国产在线| 超碰公开大香蕉97| 强行扒开双腿猛烈进入免费版| 2021天天色天天干| 国产片免费观看在线观看| 爱有来生高清在线中文字幕| 欧美一级视频一区二区| 玩弄人妻熟妇性色av少妇| 亚洲激情,偷拍视频| 天天干夜夜操啊啊啊| 午夜在线观看岛国av,com| 涩爱综合久久五月蜜臀| 99婷婷在线观看视频| 亚洲综合图片20p| 女警官打开双腿沦为性奴| 护士小嫩嫩又紧又爽20p| 亚洲精品一区二区三区老狼| 老司机深夜免费福利视频在线观看| 国产福利小视频二区| 天天射夜夜操狠狠干| 18禁免费av网站| 亚洲一区二区三区偷拍女厕91| 含骚鸡巴玩逼逼视频| 欧美黄色录像免费看的| 中文字幕—97超碰网| 亚洲伊人久久精品影院一美女洗澡| 午夜精彩视频免费一区| 国产日本精品久久久久久久| 人妻最新视频在线免费观看| 99久久久无码国产精品性出奶水| av中文字幕福利网| 在线免费观看视频一二区| 成人免费公开视频无毒| 国产精品女邻居小骚货| 国产久久久精品毛片| sspd152中文字幕在线| 精品av国产一区二区三区四区 | 日日爽天天干夜夜操| 欧美一区二区三区乱码在线播放| 色综合久久久久久久久中文| 欧美爆乳肉感大码在线观看| 亚洲成人情色电影在线观看| 美女吃鸡巴操逼高潮视频| 亚洲中文字幕校园春色| 青青色国产视频在线| 男女啪啪视频免费在线观看| 免费无码人妻日韩精品一区二区 | 国产福利在线视频一区| 一本久久精品一区二区| 成人免费公开视频无毒| 国产亚州色婷婷久久99精品| 亚洲1卡2卡三卡4卡在线观看| 欧美偷拍自拍色图片| 可以免费看的www视频你懂的| 搞黄色在线免费观看| 亚洲中文精品字幕在线观看| 国产janese在线播放| av网站色偷偷婷婷网男人的天堂| 边摸边做超爽毛片18禁色戒| 久久人人做人人妻人人玩精品vr| 中文字幕国产专区欧美激情| 最新的中文字幕 亚洲| 78色精品一区二区三区| 国产精品福利小视频a| 中文字幕在线第一页成人| 国产一区二区三免费视频| 美女 午夜 在线视频| 国产欧美日韩在线观看不卡| 人人人妻人人澡人人| 亚洲av男人的天堂你懂的| 夜夜操,天天操,狠狠操| 日本女人一级免费片| 精彩视频99免费在线| 97超碰最新免费在线观看| gogo国模私拍视频| 在线免费观看黄页视频| 日日摸夜夜添夜夜添毛片性色av| 中文字幕在线第一页成人| 亚洲图片偷拍自拍区| 日韩剧情片电影在线收看| 国产真实乱子伦a视频| 99国内小视频在现欢看| okirakuhuhu在线观看| 亚洲精品国产久久久久久| 超级碰碰在线视频免费观看| 国产精品一区二区久久久av| 91亚洲国产成人精品性色| 99精品国产aⅴ在线观看| 一区二区三区麻豆福利视频| 日韩成人免费电影二区| 99精品免费久久久久久久久a| 日日爽天天干夜夜操| av视屏免费在线播放| 天天躁日日躁狠狠躁躁欧美av | 福利片区一区二体验区| 四川五十路熟女av| 91试看福利一分钟| 黄色av网站免费在线| 人妻久久无码中文成人| 日韩熟女系列一区二区三区| 自拍偷拍 国产资源| 香蕉av影视在线观看| 色在线观看视频免费的| 在线制服丝袜中文字幕| 婷婷久久一区二区字幕网址你懂得| 涩爱综合久久五月蜜臀| 日本后入视频在线观看| 人人妻人人人操人人人爽| 五月天久久激情视频| 人妻丝袜av在线播放网址| av新中文天堂在线网址| 老司机免费福利视频网| 久青青草视频手机在线免费观看| 亚洲精品av在线观看| 黑人乱偷人妻中文字幕| 丰满少妇翘臀后进式| 亚洲精品福利网站图片| 五十路息与子猛烈交尾视频| 亚洲国产成人在线一区| 中文字日产幕乱六区蜜桃| 色噜噜噜噜18禁止观看| 3344免费偷拍视频| 91av中文视频在线| 天天日天天操天天摸天天舔| av大全在线播放免费| 成年人午夜黄片视频资源| 亚洲欧美清纯唯美另类| 欧美成人一二三在线网| 三级黄色亚洲成人av| 亚洲精品成人网久久久久久小说| 日本少妇人妻xxxxxhd| 免费一级黄色av网站| 黑人进入丰满少妇视频| 亚洲最大黄了色网站| 午夜精品亚洲精品五月色| 天天干天天操天天爽天天摸 | 999九九久久久精品| 国产女人叫床高潮大片视频| 三级av中文字幕在线观看| 初美沙希中文字幕在线 | 人妻另类专区欧美制服| 久久精品在线观看一区二区| 欧美成人精品在线观看| 蜜桃视频17c在线一区二区| 丝袜长腿第一页在线| 丰满少妇人妻xxxxx| 日本少妇高清视频xxxxx| 天天日天天做天天日天天做| 久久热这里这里只有精品| 中文乱理伦片在线观看| 特大黑人巨大xxxx| 91精品国产观看免费| 日本免费午夜视频网站| 同居了嫂子在线播高清中文| 亚洲va天堂va国产va久| 日本高清在线不卡一区二区| 亚洲成人精品女人久久久| 91社福利《在线观看| 亚洲一区自拍高清免费视频| 国产精品大陆在线2019不卡| 香港一级特黄大片在线播放| 中出中文字幕在线观看| 人妻熟女在线一区二区| 第一福利视频在线观看| 亚洲免费福利一区二区三区| 欧美精品 日韩国产| 青青青青在线视频免费观看| 男人天堂最新地址av| 亚洲免费福利一区二区三区| 成年人该看的视频黄免费| 男人和女人激情视频| 精品一区二区亚洲欧美| 国产九色91在线视频| 亚洲成人熟妇一区二区三区 | 狠狠躁夜夜躁人人爽天天久天啪| 一区二区三区在线视频福利| 精品黑人一区二区三区久久国产| 中文字幕一区二区自拍| 激情五月婷婷免费视频| 97青青青手机在线视频| 亚洲国产最大av综合| 亚洲精品一区二区三区老狼| 风流唐伯虎电视剧在线观看| 精品区一区二区三区四区人妻 | 欧美色婷婷综合在线| 国产清纯美女al在线| 98视频精品在线观看| 美日韩在线视频免费看| 亚洲一级美女啪啪啪| 国产精品系列在线观看一区二区| aiss午夜免费视频| 少妇高潮一区二区三区| 欧美viboss性丰满| 女同互舔一区二区三区| 欧美老妇精品另类不卡片| 成人av免费不卡在线观看| 色狠狠av线不卡香蕉一区二区| 天天操,天天干,天天射| 91中文字幕免费在线观看| 亚洲国产在线精品国偷产拍| 日本最新一二三区不卡在线| 欧美女同性恋免费a| 大屁股肉感人妻中文字幕在线| 在线 中文字幕 一区| 国产+亚洲+欧美+另类| 男人的天堂在线黄色| 亚洲国产欧美国产综合在线| 美女被肏内射视频网站| 国产高潮无码喷水AV片在线观看| 年轻的人妻被夫上司侵犯| 日韩精品中文字幕福利| 熟女视频一区,二区,三区| 亚洲国产欧美国产综合在线| 黄色大片男人操女人逼| 天干天天天色天天日天天射| 伊人日日日草夜夜草| 91成人精品亚洲国产| 热久久只有这里有精品| 免费在线观看污污视频网站| 社区自拍揄拍尻屁你懂的| av亚洲中文天堂字幕网| 老司机午夜精品视频资源| 免费看美女脱光衣服的视频| 国产精品熟女久久久久浪潮| xxx日本hd高清| 亚洲欧美久久久久久久久| 精品av国产一区二区三区四区 | 亚洲午夜电影在线观看| 韩国黄色一级二级三级| 青青青青草手机在线视频免费看| 91啪国自产中文字幕在线| 欧美精品欧美极品欧美视频 | 青青青艹视频在线观看| 春色激情网欧美成人| 国产中文精品在线观看| 亚洲av日韩精品久久久| 天天日天天鲁天天操| 国产剧情演绎系列丝袜高跟| 熟女91pooyn熟女| 93精品视频在线观看| 国产精品免费不卡av| 中文字幕高清资源站| 91破解版永久免费| 51国产偷自视频在线播放| 天天想要天天操天天干| 亚洲成人线上免费视频观看| 国产在线观看黄色视频| 亚洲精品 日韩电影| 亚洲人妻国产精品综合| 首之国产AV医生和护士小芳| 午夜福利人人妻人人澡人人爽| 欧美另类一区二区视频| 91she九色精品国产| 亚洲1区2区3区精华液| 女生被男生插的视频网站| 绯色av蜜臀vs少妇| 色综合天天综合网国产成人| 无码中文字幕波多野不卡| 最新的中文字幕 亚洲| 丝袜肉丝一区二区三区四区在线| 曰本无码人妻丰满熟妇啪啪| 亚洲综合图片20p| 欧美老妇精品另类不卡片| 日本韩国在线观看一区二区| 国产视频精品资源网站| 久久精品久久精品亚洲人| 欧美韩国日本国产亚洲| 中文字幕在线免费第一页| 91传媒一区二区三区| 国产黄色大片在线免费播放| 3D动漫精品啪啪一区二区下载| 999九九久久久精品| 国产成人自拍视频在线免费观看| 91福利视频免费在线观看| 国产精品亚洲а∨天堂免| 大陆精品一区二区三区久久| 在线免费视频 自拍| 在线观看免费岛国av| 午夜场射精嗯嗯啊啊视频| 久久久久久久精品成人热| 亚洲成高清a人片在线观看| 亚洲国产欧美国产综合在线 | 色秀欧美视频第一页| 欧美黄片精彩在线免费观看| 日日操夜夜撸天天干| 粗大的内捧猛烈进出爽大牛汉子| 色狠狠av线不卡香蕉一区二区| 免费av岛国天堂网站| 97色视频在线观看| www,久久久,com| 国产又粗又黄又硬又爽| 性色蜜臀av一区二区三区| 人妻丝袜精品中文字幕| 极品性荡少妇一区二区色欲| 国产成人自拍视频在线免费观看| 成人国产影院在线观看| 瑟瑟视频在线观看免费视频| 欧美一区二区三区激情啪啪啪| 91麻豆精品91久久久久同性 | 国产亚洲四十路五十路| 97a片免费在线观看| 天天想要天天操天天干| 亚洲一区二区久久久人妻| 自拍 日韩 欧美激情| 丰满少妇人妻xxxxx| 五十路在线观看完整版| 欧美日本在线观看一区二区 | 日韩三级黄色片网站| 人人爱人人妻人人澡39| 人妻在线精品录音叫床| 免费国产性生活视频| 日本一二三区不卡无| 国产麻豆精品人妻av| 午夜精品亚洲精品五月色| 91精品国产观看免费| 日韩伦理短片在线观看| 女同性ⅹxx女同hd| 丝袜肉丝一区二区三区四区在线看| 国产成人精品av网站| 在线观看的黄色免费网站| 一区二区三区四区视频| 欧洲国产成人精品91铁牛tv| 国产精品系列在线观看一区二区| 亚洲中文字字幕乱码 | 亚洲精品福利网站图片| 日韩黄色片在线观看网站| 大肉大捧一进一出好爽在线视频| 91精品免费久久久久久| 国产视频网站国产视频| 国产密臀av一区二区三| 91国内精品自线在拍白富美| av老司机亚洲一区二区| 一区二区三区四区五区性感视频| 91麻豆精品秘密入口在线观看| 人妻久久无码中文成人| 亚洲老熟妇日本老妇| 亚洲自拍偷拍综合色| 人妻素人精油按摩中出| 免费看国产av网站| aⅴ精产国品一二三产品| 国产免费av一区二区凹凸四季| 69精品视频一区二区在线观看| 六月婷婷激情一区二区三区| 91国偷自产一区二区三区精品| 岛国免费大片在线观看| 在线免费91激情四射| 55夜色66夜色国产精品站| 国产熟妇乱妇熟色T区| 中文人妻AV久久人妻水| 一区二区三区视频,福利一区二区| 国产精品久久9999| 在线播放一区二区三区Av无码| 粉嫩欧美美人妻小视频| 日韩成人性色生活片| 97国产在线观看高清| 日本少妇人妻xxxxx18| 直接观看免费黄网站| 日本午夜福利免费视频| 亚洲视频乱码在线观看| 好太好爽好想要免费| 国产精品黄页网站视频| 北条麻妃肉色丝袜视频| 在线国产日韩欧美视频| 黑人解禁人妻叶爱071| av视网站在线观看| 伊人综合免费在线视频| aⅴ五十路av熟女中出| 国产精品探花熟女在线观看| 一区二区三区的久久的蜜桃的视频| av手机免费在线观看高潮| 一区二区三区久久久91| 自拍偷拍日韩欧美一区二区| 亚洲自拍偷拍精品网| 黄色av网站免费在线| 亚洲熟女综合色一区二区三区四区| 国产变态另类在线观看| 日韩精品中文字幕播放| 久久久久国产成人精品亚洲午夜| 亚洲美女自偷自拍11页| 91麻豆精品久久久久| 久久免费看少妇高潮完整版| 中文字幕之无码色多多| 高潮视频在线快速观看国家快速| 精品黑人一区二区三区久久国产| av大全在线播放免费| 午夜精品一区二区三区城中村| 国产成人精品福利短视频| 播放日本一区二区三区电影| 国产欧美日韩在线观看不卡| 日韩亚洲高清在线观看| 一区二区视频在线观看视频在线| 国产伊人免费在线播放| 日日爽天天干夜夜操| 国产精品黄片免费在线观看| www日韩a级s片av| 男人的天堂在线黄色| 亚洲欧美精品综合图片小说| 又色又爽又黄又刺激av网站| 这里只有精品双飞在线播放| 绝色少妇高潮3在线观看| 日本阿v视频在线免费观看| 欧美黑人与人妻精品| wwwxxx一级黄色片| 新婚人妻聚会被中出| 福利视频广场一区二区| 成人24小时免费视频| 亚洲卡1卡2卡三卡四老狼| 动漫美女的小穴视频| 日本女大学生的黄色小视频| 亚洲天堂第一页中文字幕| 日韩精品一区二区三区在线播放| 99亚洲美女一区二区三区| 含骚鸡巴玩逼逼视频| 肏插流水妹子在线乐播下载| 国产日韩av一区二区在线| 精品人人人妻人人玩日产欧| 精品久久久久久久久久久久人妻 | 免费黄色成人午夜在线网站| 天天日天天舔天天射进去| 97国产在线av精品| 最新91九色国产在线观看| 3344免费偷拍视频| 国产大学生援交正在播放| 青草亚洲视频在线观看| 99久久99一区二区三区| 国产成人一区二区三区电影网站| 五十路息与子猛烈交尾视频| av网址在线播放大全| 亚洲av男人的天堂你懂的| 亚洲人妻国产精品综合| 亚洲成人熟妇一区二区三区| 亚洲欧美人精品高清| av天堂中文免费在线| 天天日天天敢天天干| 免费岛国喷水视频在线观看| 极品丝袜一区二区三区| 黄色大片男人操女人逼| 人人妻人人人操人人人爽| 999九九久久久精品| 91国产资源在线视频| 亚洲最大免费在线观看| 久久久精品精品视频视频| 欧美性受xx黑人性猛交| 青青青艹视频在线观看| 水蜜桃一区二区三区在线观看视频| 自拍偷拍日韩欧美亚洲| 老熟妇凹凸淫老妇女av在线观看| 国产美女一区在线观看| 午夜福利人人妻人人澡人人爽| 性欧美激情久久久久久久| 欧美乱妇无乱码一区二区| 亚洲中文精品人人免费| 男人天堂最新地址av| 2019av在线视频| 无码精品一区二区三区人 | 少妇系列一区二区三区视频| 狠狠躁狠狠爱网站视频| 久久机热/这里只有| 最近的中文字幕在线mv视频| av在线资源中文字幕| 五月天色婷婷在线观看视频免费| 亚洲av男人的天堂你懂的| 日本黄在免费看视频| 少妇高潮无套内谢麻豆| av中文字幕在线观看第三页| 91极品大一女神正在播放| 伊拉克及约旦宣布关闭领空| 熟女少妇激情五十路| 欧洲精品第一页欧洲精品亚洲 | 中文字幕亚洲久久久| AV天堂一区二区免费试看| 超级福利视频在线观看| 亚洲男人在线天堂网| 中文字幕人妻被公上司喝醉在线| 最新的中文字幕 亚洲| 久久久精品999精品日本| 天天色天天舔天天射天天爽 | 亚洲推理片免费看网站| 青青青青青青青青青青草青青| 国产激情av网站在线观看| 亚洲少妇人妻无码精品| 91人妻精品一区二区在线看| 中文字幕av男人天堂| 中文字幕 码 在线视频| 岛国免费大片在线观看 | 国产成人精品午夜福利训2021| 护士小嫩嫩又紧又爽20p| 国产日韩精品电影7777| 亚洲一区自拍高清免费视频| 日本男女操逼视频免费看| 99热色原网这里只有精品| 黑人解禁人妻叶爱071| 中文字幕高清免费在线人妻| 久草视频福利在线首页| 欧美成人一二三在线网| 激情图片日韩欧美人妻| 亚洲成人熟妇一区二区三区| 日韩a级黄色小视频| 东京热男人的av天堂| 亚洲人妻30pwc| 搡老熟女一区二区在线观看| 精品人妻伦一二三区久| 五月色婷婷综合开心网4438| 欧美老妇精品另类不卡片| 在线免费视频 自拍| 揄拍成人国产精品免费看视频| 夜鲁夜鲁狠鲁天天在线| 一区二区三区综合视频| 天天色天天操天天透| 国产精选一区在线播放| 亚洲Av无码国产综合色区| 黄色成年网站午夜在线观看| 中国把吊插入阴蒂的视频| 国产精品一区二区av国| 少妇深喉口爆吞精韩国| 午夜精品福利一区二区三区p| 天天色天天操天天舔| 福利片区一区二体验区| 熟妇一区二区三区高清版| 日本xx片在线观看| 激情五月婷婷综合色啪| 大香蕉大香蕉大香蕉大香蕉大香蕉 | 成人在线欧美日韩国产| sejizz在线视频| 美女吃鸡巴操逼高潮视频| 沙月文乃人妻侵犯中文字幕在线 | 亚洲 色图 偷拍 欧美| 午夜蜜桃一区二区三区| 18禁美女无遮挡免费| www日韩a级s片av| 中文字幕日韩精品日本| 国产精品久久久久久久女人18| 精品日产卡一卡二卡国色天香 | 日韩影片一区二区三区不卡免费| 少妇露脸深喉口爆吞精| 国产午夜福利av导航 | 一区二区视频在线观看免费观看 | 免费成人av中文字幕| 国产性生活中老年人视频网站| 精品久久久久久高潮| av在线观看网址av| 偷拍自拍 中文字幕| 岛国av高清在线成人在线| 亚洲午夜高清在线观看| 农村胖女人操逼视频| 天堂av在线播放免费| 国产精品视频男人的天堂| 伊人成人综合开心网| 黑人进入丰满少妇视频| 边摸边做超爽毛片18禁色戒| 亚洲国产在人线放午夜| 91在线免费观看成人| 99国产精品窥熟女精品| 一级A一级a爰片免费免会员| 亚洲最大免费在线观看| 久久午夜夜伦痒痒想咳嗽P| 午夜精品福利一区二区三区p | 18禁精品网站久久| 最新91九色国产在线观看| 午夜在线一区二区免费| 大鸡巴操娇小玲珑的女孩逼| 色花堂在线av中文字幕九九| 亚洲色偷偷综合亚洲AV伊人| 91欧美在线免费观看| 大陆精品一区二区三区久久| 免费看国产av网站| 91免费放福利在线观看| 视频一区二区在线免费播放| 日韩成人综艺在线播放| 亚洲自拍偷拍精品网| 播放日本一区二区三区电影| 精品人妻伦一二三区久| 国产熟妇一区二区三区av| avjpm亚洲伊人久久| 亚洲乱码中文字幕在线| 日本一本午夜在线播放| 人妻爱爱 中文字幕| 啪啪啪18禁一区二区三区 | 精品亚洲在线免费观看| 人妻激情图片视频小说| 亚洲一区二区久久久人妻| 香港三日本三韩国三欧美三级| 国产在线一区二区三区麻酥酥| 日韩a级精品一区二区| 亚洲av天堂在线播放| 亚洲日本一区二区三区| yellow在线播放av啊啊啊| 懂色av之国产精品| 国产高清精品一区二区三区| 久草视频在线一区二区三区资源站 | 亚洲 中文 自拍 无码| av中文字幕福利网| 干逼又爽又黄又免费的视频| 婷婷六月天中文字幕| 午夜精品福利一区二区三区p | 亚洲1卡2卡三卡4卡在线观看 | 成年人该看的视频黄免费| 国产九色91在线视频| 成人影片高清在线观看| 这里只有精品双飞在线播放| 亚洲超碰97人人做人人爱| 在线新三级黄伊人网| 精品国产亚洲av一淫| 中国产一级黄片免费视频播放| 97色视频在线观看| 涩涩的视频在线观看视频| 高清成人av一区三区| 97超碰最新免费在线观看| 动色av一区二区三区| 只有精品亚洲视频在线观看| 2021年国产精品自拍| 欧美精品伦理三区四区| 插逼视频双插洞国产操逼插洞| 东京热男人的av天堂| 人妻熟女中文字幕aⅴ在线| 日本高清撒尿pissing| 欧美 亚洲 另类综合| 日本高清撒尿pissing| 丝袜国产专区在线观看| 新婚人妻聚会被中出| 999久久久久999| 久久久久国产成人精品亚洲午夜| 午夜精品福利91av| 熟女人妻三十路四十路人妻斩| 黄色片一级美女黄色片| 亚洲欧美久久久久久久久| 2018在线福利视频| 亚洲第一黄色在线观看| 天天干天天日天天谢综合156| 国产福利小视频二区| 日本福利午夜电影在线观看| 青青青青操在线观看免费| yellow在线播放av啊啊啊| 中文字幕免费在线免费| 成人区人妻精品一区二视频| 亚洲成a人片777777| 在线免费观看黄页视频| 久草视频 久草视频2| 中文字幕中文字幕 亚洲国产| 三级av中文字幕在线观看| 免费无码人妻日韩精品一区二区| 国产精品黄页网站视频| 韩国三级aaaaa高清视频 | 加勒比视频在线免费观看| 精品久久久久久高潮| av在线shipin| 精品欧美一区二区vr在线观看| 在线观看av观看av| 亚洲国产欧美国产综合在线| 亚洲成人精品女人久久久| 丰满少妇翘臀后进式| 国产欧美精品免费观看视频| 日本性感美女写真视频| 涩爱综合久久五月蜜臀| 人妻少妇中文有码精品| 日本在线一区二区不卡视频| 午夜极品美女福利视频| 热思思国产99re| 超黄超污网站在线观看| 亚洲av香蕉一区区二区三区犇| 日本男女操逼视频免费看| 91中文字幕免费在线观看| 美女av色播在线播放| 97精品综合久久在线| 一区二区三区四区视频| 粗大的内捧猛烈进出爽大牛汉子| 日韩不卡中文在线视频网站 | 亚洲av无女神免非久久| 亚洲欧美在线视频第一页| 亚洲一级 片内射视正片| 成人高清在线观看视频| 欧美区一区二区三视频| 亚洲中文精品字幕在线观看| 一区二区在线视频中文字幕| 青青草国内在线视频精选| 亚洲专区激情在线观看视频| 最后99天全集在线观看| japanese五十路熟女熟妇| 国产在线91观看免费观看| 成年人的在线免费视频| 欧美伊人久久大香线蕉综合| 丰满的子国产在线观看| 日本成人不卡一区二区| 青青青青青手机视频| 91成人在线观看免费视频| 91色秘乱一区二区三区| 黑人性生活视频免费看| 玖玖一区二区在线观看| 日美女屁股黄邑视频| 亚洲卡1卡2卡三卡四老狼| 亚洲欧美激情中文字幕| 中文字幕在线观看极品视频| 人妻久久无码中文成人| 日本av熟女在线视频| 中文字幕之无码色多多| 婷婷色国产黑丝少妇勾搭AV | lutube在线成人免费看| 久久久久久久精品成人热| 青娱乐蜜桃臀av色| 97青青青手机在线视频| 国产精品久久久久久久女人18| 欧美乱妇无乱码一区二区| 亚洲图片欧美校园春色| 早川濑里奈av黑人番号| 加勒比视频在线免费观看| 久久精品国产亚洲精品166m| 国产欧美日韩在线观看不卡| 日本特级片中文字幕| 国产精品大陆在线2019不卡| 超级碰碰在线视频免费观看| 大白屁股精品视频国产| 欧美日韩情色在线观看| av在线shipin| 91麻豆精品久久久久| 不卡一不卡二不卡三| 51国产成人精品视频| 91一区精品在线观看| 红杏久久av人妻一区| 又色又爽又黄又刺激av网站| 天天操,天天干,天天射| 国产aⅴ一线在线观看| 一区二区三区久久久91| 男人的天堂一区二区在线观看| 夜夜骑夜夜操夜夜奸| 视频一区二区综合精品| 又粗又硬又猛又爽又黄的| 欧美香蕉人妻精品一区二区| 国产免费av一区二区凹凸四季| 三级av中文字幕在线观看| 少妇ww搡性bbb91| 亚洲区欧美区另类最新章节| 在线视频这里只有精品自拍| 视频 国产 精品 熟女 | 国产精品视频资源在线播放 | 绝色少妇高潮3在线观看| 啪啪啪18禁一区二区三区| 午夜青青草原网在线观看| 偷拍自拍福利视频在线观看| 狠狠的往里顶撞h百合| 亚洲一区二区三区久久午夜 | 国产美女精品福利在线| 天天射,天天操,天天说| 91亚洲国产成人精品性色| 97国产福利小视频合集| 国产一区成人在线观看视频| 亚洲欧美激情中文字幕| 亚洲va欧美va人人爽3p| 日本一区二区三区免费小视频| 亚洲一区二区三区精品乱码| 岛国毛片视频免费在线观看| 看一级特黄a大片日本片黑人| 久草视频在线免播放| 四虎永久在线精品免费区二区| 超碰公开大香蕉97| 日本熟女50视频免费| 99久久超碰人妻国产| 亚洲午夜电影之麻豆| 92福利视频午夜1000看 | 狠狠躁夜夜躁人人爽天天天天97| 久久丁香婷婷六月天| 天天插天天色天天日| 亚洲欧美福利在线观看| 98精产国品一二三产区区别| 日本www中文字幕| 97成人免费在线观看网站| 天天日天天日天天射天天干| av男人天堂狠狠干| 中文 成人 在线 视频| 精品久久久久久久久久中文蒉| 欧美精品亚洲精品日韩在线| 国产在线观看黄色视频| 天码人妻一区二区三区在线看| 免费岛国喷水视频在线观看| 亚洲一区二区三区uij| 欧美亚洲中文字幕一区二区三区| 绝顶痉挛大潮喷高潮无码 | 黄色大片男人操女人逼| 大香蕉伊人国产在线| 日韩精品中文字幕播放| 极品粉嫩小泬白浆20p主播| 国产黄色片蝌蚪九色91| 亚洲国产成人无码麻豆艾秋| 91亚洲精品干熟女蜜桃频道| 伊人日日日草夜夜草| 蜜桃视频在线欧美一区| 岳太深了紧紧的中文字幕| 大香蕉福利在线观看| 婷婷激情四射在线观看视频| 欧美日韩人妻久久精品高清国产| 大鸡吧插逼逼视频免费看| 天天干夜夜操天天舔| 91色老99久久九九爱精品| 经典亚洲伊人第一页| 亚洲精品一线二线在线观看| 激情图片日韩欧美人妻| 亚洲高清国产自产av| 日本人妻欲求不满中文字幕| 51国产偷自视频在线播放| 在线观看的a站 最新| 播放日本一区二区三区电影| 男女啪啪视频免费在线观看| 亚洲av男人的天堂你懂的| 国产成人精品久久二区91| 亚洲美女自偷自拍11页| 青青伊人一精品视频| 福利视频广场一区二区| 日韩成人综艺在线播放| 国产高清精品极品美女| 丝袜长腿第一页在线| 国产黄色大片在线免费播放| 午夜美女福利小视频| 巨乳人妻日下部加奈被邻居中出 | 自拍偷拍亚洲另类色图| 亚洲区美熟妇久久久久| 换爱交换乱高清大片| 老司机福利精品免费视频一区二区| 伊人成人综合开心网| 午夜精品一区二区三区更新| 欧美亚洲少妇福利视频| 欧美乱妇无乱码一区二区| 偷拍自拍视频图片免费| 大陆胖女人与丈夫操b国语高清| 自拍偷拍亚洲另类色图| 国产又粗又黄又硬又爽| 国产精品一区二区三区蜜臀av | 国产精品一区二区久久久av| 精品少妇一二三视频在线| 亚洲一区二区久久久人妻| 亚洲国产精品久久久久蜜桃| 久久艹在线观看视频| 在线免费观看黄页视频| 日本熟妇一区二区x x| 欧美日本在线观看一区二区| 少妇人妻真实精品视频| 蝴蝶伊人久久中文娱乐网| japanese五十路熟女熟妇| 大陆胖女人与丈夫操b国语高清| 精品suv一区二区69| 免费av岛国天堂网站| 后入美女人妻高清在线| www久久久久久久久久久| 女蜜桃臀紧身瑜伽裤| 亚洲精品乱码久久久本| 91色网站免费在线观看| 最新国产亚洲精品中文在线| 日本性感美女视频网站| 国产妇女自拍区在线观看| 国产高清精品极品美女| 任你操视频免费在线观看| av在线免费资源站| 亚洲天天干 夜夜操| 宅男噜噜噜666免费观看| 国产在线一区二区三区麻酥酥| 1024久久国产精品| 国产成人自拍视频在线免费观看| 成人区人妻精品一区二视频| 日本后入视频在线观看| 国产密臀av一区二区三| 久久久久久cao我的性感人妻| 1000部国产精品成人观看视频| 少妇深喉口爆吞精韩国| 偷拍自拍福利视频在线观看| 国产精品中文av在线播放 | 红杏久久av人妻一区| ka0ri在线视频| 少妇系列一区二区三区视频| 成人网18免费视频版国产| 精品少妇一二三视频在线| 国产成人午夜精品福利| 久久久久久99国产精品| 自拍偷拍亚洲欧美在线视频| 国产日韩av一区二区在线| 日日夜夜大香蕉伊人| 自拍偷拍亚洲精品第2页| 91麻豆精品91久久久久同性| 99视频精品全部15| 粉嫩av懂色av蜜臀av| 日本在线不卡免费视频| 天天色天天操天天透| 欧美成人小视频在线免费看| 午夜国产免费福利av| 午夜免费体验区在线观看| 色哟哟国产精品入口| 福利在线视频网址导航 | 欧美日韩人妻久久精品高清国产 | 丰满少妇人妻xxxxx| 免费十精品十国产网站| 亚洲另类在线免费观看| 欧美男同性恋69视频| 精品黑人巨大在线一区| 欧美另类重口味极品在线观看| 五十路熟女人妻一区二| 2021久久免费视频| 亚洲中文字幕综合小综合| a v欧美一区=区三区| 在线免费观看视频一二区| 成人福利视频免费在线| 亚洲中文字幕乱码区| 伊人开心婷婷国产av| 日韩中文字幕在线播放第二页| 人妻激情图片视频小说| 日韩不卡中文在线视频网站| 99热碰碰热精品a中文| 超级av免费观看一区二区三区| 国产麻豆国语对白露脸剧情 | 成人24小时免费视频| 亚洲一级av无码一级久久精品| 亚洲欧美清纯唯美另类 | 精品视频国产在线观看| 亚洲熟妇久久无码精品| 天天日天天干天天要| 超pen在线观看视频公开97| 色综合天天综合网国产成人| 亚洲福利天堂久久久久久| 天天日天天鲁天天操| 国产精品久久久久久久精品视频| 欧美xxx成人在线| chinese国产盗摄一区二区 | 亚洲麻豆一区二区三区| 国产在线免费观看成人| 久久久人妻一区二区| 亚洲人一区二区中文字幕| 亚洲中文字幕乱码区| 夜女神免费福利视频| 久久久久久97三级| 日韩一区二区电国产精品| 中文字幕在线免费第一页| 国产亚洲欧美视频网站| 熟女人妻在线中出观看完整版| 亚洲欧美激情国产综合久久久| 日韩在线中文字幕色| 唐人色亚洲av嫩草| 日本成人一区二区不卡免费在线| 特级无码毛片免费视频播放| 日韩欧美一级aa大片| 91一区精品在线观看| 另类av十亚洲av| 丝袜国产专区在线观看| 在线观看的黄色免费网站| 男人的网址你懂的亚洲欧洲av| 端庄人妻堕落挣扎沉沦| 亚洲熟妇无码一区二区三区| 国产欧美日韩在线观看不卡| 超碰中文字幕免费观看| 免费人成黄页网站在线观看国产 | 在线免费观看国产精品黄色| 亚洲图片偷拍自拍区| 欧美3p在线观看一区二区三区| 视频二区在线视频观看 | 亚洲av无硬久久精品蜜桃| 在线免费观看av日韩| av中文字幕在线导航| 欧美地区一二三专区| 青青青视频自偷自拍38碰| 成年人黄视频在线观看| 沈阳熟妇28厘米大战黑人| 自拍偷拍亚洲另类色图| 偷拍自拍 中文字幕| 亚洲午夜在线视频福利| 性色蜜臀av一区二区三区| 日韩av免费观看一区| 青青草精品在线视频观看| 中文字幕av男人天堂| 成人国产影院在线观看| 涩爱综合久久五月蜜臀| 自拍偷拍vs一区二区三区| aaa久久久久久久久| 久久99久久99精品影院| 91av中文视频在线| 色偷偷伊人大杳蕉综合网| 国产精品精品精品999| 97黄网站在线观看| 肏插流水妹子在线乐播下载| 中文亚洲欧美日韩无线码| 硬鸡巴动态操女人逼视频| 视频一区二区综合精品| 亚洲偷自拍高清视频| 亚洲高清自偷揄拍自拍| 国产高清在线观看1区2区| 亚洲日产av一区二区在线| 丁香花免费在线观看中文字幕| 久久人人做人人妻人人玩精品vr| 91精品啪在线免费| 日本丰满熟妇BBXBBXHD| 97精品成人一区二区三区 | 福利片区一区二体验区| 风流唐伯虎电视剧在线观看 | 精品亚洲在线免费观看| 青青青国产免费视频| 中文字幕人妻一区二区视频| 岛国黄色大片在线观看| 在线免费观看日本片| 日本熟妇色熟妇在线观看| 97欧洲一区二区精品免费| 这里只有精品双飞在线播放| 五十路熟女av天堂| 亚洲第17页国产精品| 噜噜色噜噜噜久色超碰| 亚洲欧美一区二区三区爱爱动图| 日曰摸日日碰夜夜爽歪歪| 日韩北条麻妃一区在线| xxx日本hd高清| 天天干天天插天天谢| 11久久久久久久久久久| 国产黑丝高跟鞋视频在线播放 | 中文字幕熟女人妻久久久| 国产视频一区二区午夜| 天天日天天干天天爱| 亚洲人妻视频在线网| 国产性色生活片毛片春晓精品| 成人免费毛片aaaa| 91成人精品亚洲国产| 天天想要天天操天天干| 2020韩国午夜女主播在线| 久久麻豆亚洲精品av| 沈阳熟妇28厘米大战黑人| 骚货自慰被发现爆操| 91人妻精品久久久久久久网站 | 日本少妇在线视频大香蕉在线观看| 国产视频网站国产视频| 午夜的视频在线观看| 99re国产在线精品| 97黄网站在线观看| 久久久久久久精品老熟妇| av黄色成人在线观看| 亚洲专区激情在线观看视频| 国产精品黄大片在线播放| 爱爱免费在线观看视频| 国产品国产三级国产普通话三级| 婷婷久久久久深爱网| 91极品大一女神正在播放| 97小视频人妻一区二区| 欧美精品一二三视频| 男人和女人激情视频| 国产亚洲视频在线二区| 青青擦在线视频国产在线| 日本午夜爽爽爽爽爽视频在线观看| 欧美精品一区二区三区xxxx| 天天通天天透天天插| 91大神福利视频网| 狠狠地躁夜夜躁日日躁| 天天日天天爽天天爽| 福利视频一区二区三区筱慧 | 啊啊好大好爽啊啊操我啊啊视频 | 日韩熟女系列一区二区三区| 在线观看免费岛国av| 天天操天天插天天色| 大陆精品一区二区三区久久| 中文字幕—97超碰网| 又黄又刺激的午夜小视频| 97国产在线av精品| 日本一二三中文字幕| 无码精品一区二区三区人 | 天天射,天天操,天天说| 福利视频网久久91| 韩国女主播精品视频网站| 亚洲av无码成人精品区辽| 国内资源最丰富的网站| 免费在线观看污污视频网站| 日韩精品激情在线观看| 精品国产污污免费网站入口自| 五月婷婷在线观看视频免费| 久久美欧人妻少妇一区二区三区| 啪啪啪啪啪啪啪啪av| 男人操女人逼逼视频网站| 欧美熟妇一区二区三区仙踪林| 精品一区二区三区欧美| av欧美网站在线观看| 天天干天天搞天天摸| 91久久人澡人人添人人爽乱| 中文字幕日韩人妻在线三区| 亚洲中文字幕国产日韩| 少妇露脸深喉口爆吞精| 日本韩国免费一区二区三区视频| 青青青激情在线观看视频| 都市激情校园春色狠狠| 性欧美日本大妈母与子| 馒头大胆亚洲一区二区| 成人av免费不卡在线观看| 国产美女一区在线观看| 97少妇精品在线观看| 夜色17s精品人妻熟女| 91免费放福利在线观看| 黄页网视频在线免费观看| 午夜久久久久久久99| 在线观看视频网站麻豆| 成年女人免费播放视频| 91一区精品在线观看| 少妇一区二区三区久久久| 天堂女人av一区二区| 日韩欧美中文国产在线| 青青青激情在线观看视频| www日韩a级s片av| 中文字幕一区二区三区人妻大片| 精品一线二线三线日本| 大鸡吧插逼逼视频免费看| 美女小视频网站在线| 亚洲粉嫩av一区二区三区| 在线可以看的视频你懂的| 在线观看免费视频网| 亚洲av可乐操首页| 亚洲美女美妇久久字幕组| 高清成人av一区三区| 亚洲精品无码久久久久不卡| 欧美成人综合视频一区二区| 亚洲男人的天堂a在线| 国产实拍勾搭女技师av在线| 涩涩的视频在线观看视频| 欧美专区日韩专区国产专区| av一本二本在线观看| 日本少妇人妻xxxxx18| 97小视频人妻一区二区| 少妇人妻二三区视频| 国产精品三级三级三级| 天堂av狠狠操蜜桃| 国产精品久久久久久久久福交| 91九色国产porny蝌蚪| 欧美亚洲自偷自拍 在线| 91精品激情五月婷婷在线| 在线观看免费岛国av| 欧美久久久久久三级网| 成人sm视频在线观看| 硬鸡巴动态操女人逼视频| 亚洲国产精品中文字幕网站| 自拍偷拍亚洲欧美在线视频| 在线视频免费观看网| 国产高清精品极品美女| 国际av大片在线免费观看| 免费福利av在线一区二区三区| 亚洲av色图18p| 亚洲福利天堂久久久久久| 夫妻在线观看视频91| 亚洲伊人av天堂有码在线| 日韩欧美一级aa大片| 熟女人妻一区二区精品视频| 五十路息与子猛烈交尾视频| 懂色av之国产精品| 北条麻妃av在线免费观看| 亚洲少妇高潮免费观看| 男人的网址你懂的亚洲欧洲av| 天天综合天天综合天天网| 精品日产卡一卡二卡国色天香 | 欧美一区二区三区高清不卡tv| 99精品久久久久久久91蜜桃| 人妻少妇性色欲欧美日韩| 久久www免费人成一看片| 国产精品一二三不卡带免费视频| 在线观看日韩激情视频| 最近中文2019年在线看| 91she九色精品国产| 国产精品国产三级国产精东| 3337p日本欧洲大胆色噜噜| 亚洲国产美女一区二区三区软件 | 三级av中文字幕在线观看| 国产欧美精品一区二区高清 | 黑人性生活视频免费看| 不卡精品视频在线观看| 成人蜜桃美臀九一一区二区三区| 91色老99久久九九爱精品| 夜色撩人久久7777| 午夜精品福利一区二区三区p| 93人妻人人揉人人澡人人| mm131美女午夜爽爽爽| 亚洲成人激情av在线| 天天日天天操天天摸天天舔| 夜鲁夜鲁狠鲁天天在线| 日本丰满熟妇大屁股久久| 啊慢点鸡巴太大了啊舒服视频| 成人久久精品一区二区三区| 国产亚洲欧美另类在线观看| 老司机午夜精品视频资源 | 亚洲av极品精品在线观看| 大香蕉玖玖一区2区| 亚洲欧美自拍另类图片| 免费十精品十国产网站| 任你操任你干精品在线视频| 中文字幕熟女人妻久久久| 激情五月婷婷综合色啪| 天天日夜夜干天天操| 日比视频老公慢点好舒服啊| 中文字幕人妻被公上司喝醉在线| 欧美日韩人妻久久精品高清国产 | 一级黄色片夫妻性生活| 中字幕人妻熟女人妻a62v网 | 夜色福利视频在线观看| 天天日天天爽天天爽| 日韩一区二区三区三州| 久久久精品国产亚洲AV一| 少妇人妻久久久久视频黄片| 国产日韩一区二区在线看| 久久久精品999精品日本| 国产伦精品一区二区三区竹菊| 亚洲精品无码久久久久不卡| 大黑人性xxxxbbbb| 国产精品系列在线观看一区二区| 午夜dv内射一区区| 18禁美女黄网站色大片下载| 麻豆精品成人免费视频| 男女第一次视频在线观看| 中文字幕av男人天堂| 成人av天堂丝袜在线观看 | 日韩伦理短片在线观看| 99re久久这里都是精品视频| 日韩精品中文字幕福利| 亚洲中文字幕校园春色| 午夜精品福利91av| 特黄老太婆aa毛毛片| 91久久精品色伊人6882| 日韩一区二区三区三州| yellow在线播放av啊啊啊| av天堂中文字幕最新| 免费人成黄页网站在线观看国产| 亚洲最大免费在线观看| huangse网站在线观看| 亚洲中文字字幕乱码| 久久麻豆亚洲精品av| 欧美老鸡巴日小嫩逼| 加勒比视频在线免费观看| 人妻少妇精品久久久久久 | 不卡日韩av在线观看| 亚洲国际青青操综合网站| av破解版在线观看| 日本脱亚入欧是指什么| 毛片av在线免费看| 亚洲成av人无码不卡影片一| 99久久超碰人妻国产| 啪啪啪操人视频在线播放| 毛茸茸的大外阴中国视频| av俺也去在线播放| 天天日天天干天天干天天日| 亚洲综合一区二区精品久久| 亚洲av一妻不如妾| 国产又粗又黄又硬又爽| 男人的天堂一区二区在线观看| 国产精品伦理片一区二区| 91香蕉成人app下载| 亚洲偷自拍高清视频| 97超碰免费在线视频| 国产精品久久久久国产三级试频| 亚洲av色图18p| 国产又粗又硬又大视频| 午夜毛片不卡在线看| 51精品视频免费在线观看| 3344免费偷拍视频| 绝色少妇高潮3在线观看| 精品久久久久久久久久久a√国产| 欧美黄色录像免费看的| 亚洲av极品精品在线观看| 专门看国产熟妇的网站| 中文字幕视频一区二区在线观看| 亚洲变态另类色图天堂网| 国产黄色a级三级三级三级| 日韩美女搞黄视频免费| 天天日夜夜干天天操| 成人18禁网站在线播放| 视频在线免费观看你懂得| 成人av久久精品一区二区| 国产黄色高清资源在线免费观看| 中文字日产幕乱六区蜜桃| 日本男女操逼视频免费看| 免费在线福利小视频| 噜噜色噜噜噜久色超碰| 美洲精品一二三产区区别| 又粗又长 明星操逼小视频| 成人综合亚洲欧美一区| 一区二区三区美女毛片| 久久一区二区三区人妻欧美| 午夜成午夜成年片在线观看| 在线视频精品你懂的| AV天堂一区二区免费试看| 熟女俱乐部一二三区| 欧美日韩熟女一区二区三区| 日韩北条麻妃一区在线| 中文字幕欧美日韩射射一| 天天摸天天日天天操| 中文字幕无码一区二区免费| 性生活第二下硬不起来| 动漫av网站18禁| 国产午夜亚洲精品麻豆| 国产精品自拍在线视频| 午夜蜜桃一区二区三区| 国产福利小视频大全| 欧美一区二区三区啪啪同性| 国产av国片精品一区二区| 欧美成一区二区三区四区| 在线观看日韩激情视频| 97国产精品97久久| 超级碰碰在线视频免费观看| 在线观看av亚洲情色| 天天日天天干天天要| 亚洲精品 欧美日韩| 成人动漫大肉棒插进去视频| 亚洲av琪琪男人的天堂| 人妻无码中文字幕专区| 亚洲欧美激情国产综合久久久| 国产福利小视频免费观看| 天天日夜夜干天天操| 好吊视频—区二区三区| 亚洲男人的天堂a在线| 加勒比视频在线免费观看| 9色在线视频免费观看| 黄片三级三级三级在线观看| 午夜美女少妇福利视频| 日韩三级电影华丽的外出| 国产日韩精品一二三区久久久| 福利在线视频网址导航| 男生舔女生逼逼视频| 天天操天天射天天操天天天| 偷拍自拍福利视频在线观看| 在线观看一区二区三级| 夜夜嗨av一区二区三区中文字幕| 国产在线观看黄色视频| 国产熟妇乱妇熟色T区| av手机在线观播放网站| 国产亚洲欧美另类在线观看| 国产亚洲精品品视频在线| 偷拍自拍视频图片免费| 成年午夜影片国产片| 538精品在线观看视频| 偷拍自拍视频图片免费| 亚洲特黄aaaa片| 国产精品手机在线看片| 成人综合亚洲欧美一区 | 亚洲综合一区成人在线| 精品老妇女久久9g国产| 久久久久久9999久久久久| 熟妇一区二区三区高清版| 3337p日本欧洲大胆色噜噜| 狠狠躁狠狠爱网站视频| www,久久久,com| 中文字幕人妻熟女在线电影| 99视频精品全部15| 蜜臀av久久久久久久| 欧美日韩中文字幕欧美| 男人的天堂在线黄色| 日韩北条麻妃一区在线| 大陆胖女人与丈夫操b国语高清| 久久这里只有精品热视频| 可以在线观看的av中文字幕| 美女被肏内射视频网站| www骚国产精品视频| 好吊视频—区二区三区| 天天日天天干天天干天天日| 欧美一区二区三区乱码在线播放| 在线观看av亚洲情色| 啪啪啪操人视频在线播放| 精品国产污污免费网站入口自| 性感美女高潮视频久久久| 538精品在线观看视频| yellow在线播放av啊啊啊| 姐姐的朋友2在线观看中文字幕| 在线观看911精品国产| 亚洲中文字幕国产日韩| 懂色av之国产精品| 91在线视频在线精品3| 狠狠鲁狠狠操天天晚上干干| 午夜精品一区二区三区更新| chinese国产盗摄一区二区| 在线免费观看日本片| 在线免费视频 自拍| 又黄又刺激的午夜小视频| 中文字幕日韩精品日本| 国产老熟女伦老熟妇ⅹ| 国产精品中文av在线播放| 欧美少妇性一区二区三区| jiuse91九色视频| 日韩美女综合中文字幕pp| 国产真实灌醉下药美女av福利| 六月婷婷激情一区二区三区| 特级无码毛片免费视频播放 | 粉嫩av懂色av蜜臀av| 亚洲av人人澡人人爽人人爱| 九一传媒制片厂视频在线免费观看| 国产精彩福利精品视频| 人妻素人精油按摩中出| 天天操天天干天天日狠狠插 | 91天堂天天日天天操| 日本欧美视频在线观看三区| 香港三日本三韩国三欧美三级| 亚洲另类伦春色综合小| 欧美一区二区三区啪啪同性| 欧美日本aⅴ免费视频| sw137 中文字幕 在线| 国产精品一区二区久久久av| 久久久超爽一二三av| 日本三极片视频网站观看| 一区二区三区另类在线| 粉嫩欧美美人妻小视频| 国产精品成人xxxx| 欧美男人大鸡吧插女人视频| 精品日产卡一卡二卡国色天香| 久久久久久99国产精品| 亚洲精品国产在线电影| 午夜青青草原网在线观看| 国产精品伦理片一区二区| gogo国模私拍视频| 亚洲卡1卡2卡三卡四老狼| 91国产资源在线视频| 岛国黄色大片在线观看| 精品区一区二区三区四区人妻| 国产又粗又猛又爽又黄的视频在线| 大肉大捧一进一出好爽在线视频| 天天干天天操天天插天天日| 免费看美女脱光衣服的视频| 57pao国产一区二区| 免费在线观看污污视频网站| 天堂av中文在线最新版| 最新97国产在线视频| 国产成人无码精品久久久电影| 成人影片高清在线观看| 91福利在线视频免费观看| 老司机福利精品免费视频一区二区| 77久久久久国产精产品| 国产免费高清视频视频| 中文字幕一区二区自拍| 超碰97人人澡人人| 直接能看的国产av| 超碰97人人做人人爱| 在线播放国产黄色av| 在线制服丝袜中文字幕| 欧美日韩激情啪啪啪| 亚洲熟妇久久无码精品| 大香蕉伊人中文字幕| 精品亚洲国产中文自在线| 91国内精品久久久久精品一| 亚洲精品高清自拍av | 国产亚洲成人免费在线观看| 亚洲精品午夜aaa久久| 噜噜色噜噜噜久色超碰| 亚洲av极品精品在线观看| 午夜的视频在线观看| 婷婷色中文亚洲网68| 青青青视频自偷自拍38碰| 亚洲精品国产综合久久久久久久久 | 天美传媒mv视频在线观看| 乱亲女秽乱长久久久| 亚洲成人三级在线播放| 天天操天天操天天碰| 日韩中文字幕福利av| 久草视频首页在线观看| 精品人人人妻人人玩日产欧| 一级a看免费观看网站| 青青在线视频性感少妇和隔壁黑丝| 午夜在线一区二区免费| 偷青青国产精品青青在线观看| nagger可以指黑人吗| 午夜av一区二区三区| 精彩视频99免费在线| 青娱乐极品视频青青草| 国产欧美日韩第三页| 天码人妻一区二区三区在线看| 狍和女人的王色毛片| 91香蕉成人app下载| 亚洲 清纯 国产com| 亚国产成人精品久久久| 婷婷久久一区二区字幕网址你懂得| av中文字幕网址在线| 2020久久躁狠狠躁夜夜躁| 欧美男同性恋69视频| 97国产福利小视频合集| 亚洲激情av一区二区| 超碰中文字幕免费观看| 亚洲午夜福利中文乱码字幕 | 欧美黑人与人妻精品| 日本免费视频午夜福利视频| 黑人变态深video特大巨大| 夫妻在线观看视频91| 欧美韩国日本国产亚洲| 中文字幕中文字幕人妻| 91极品新人『兔兔』精品新作 | 亚洲另类在线免费观看| AV无码一区二区三区不卡| 久久久精品精品视频视频| 中文字幕无码一区二区免费| 快点插进来操我逼啊视频| 亚洲成人国产av在线| 天天干天天操天天爽天天摸| 亚洲成人黄色一区二区三区| 亚洲一区二区三区偷拍女厕91| 青青青青在线视频免费观看| 日视频免费在线观看| 真实国模和老外性视频| 中文字幕免费福利视频6| 超黄超污网站在线观看| 免费岛国喷水视频在线观看| 人妻3p真实偷拍一二区| 女同久久精品秋霞网| 亚洲精品 日韩电影| 久久艹在线观看视频| 日韩美女综合中文字幕pp| 男女啪啪视频免费在线观看| 性感美女高潮视频久久久| 大陆胖女人与丈夫操b国语高清| 天天摸天天日天天操| av大全在线播放免费| av线天堂在线观看| gav成人免费播放| 一区二区视频视频视频| av视网站在线观看| 中文字幕—97超碰网| 久久久久久cao我的性感人妻 | 天天插天天狠天天操| 桃色视频在线观看一区二区| 5528327男人天堂| 青青草人人妻人人妻| 中文字幕日韩91人妻在线| 93视频一区二区三区| 一区二区三区毛片国产一区| 黄色男人的天堂视频| 日韩美女福利视频网| 亚洲成人免费看电影| 自拍偷拍亚洲精品第2页| 成人性爱在线看四区| 三级等保密码要求条款| 非洲黑人一级特黄片| 免费大片在线观看视频网站| 黄色视频在线观看高清无码 | 中文字幕1卡1区2区3区| 中文字幕视频一区二区在线观看 | 亚洲精品高清自拍av| 啊啊好大好爽啊啊操我啊啊视频 | 在线网站你懂得老司机| 欧美黑人巨大性xxxxx猛交| 超碰中文字幕免费观看| 青娱乐最新视频在线| 真实国产乱子伦一区二区| 91精品一区二区三区站长推荐| 后入美女人妻高清在线| 免费高清自慰一区二区三区网站| 91成人在线观看免费视频| 人人超碰国字幕观看97| av高潮迭起在线观看| 欧美一级色视频美日韩| 青青色国产视频在线| 亚洲国产成人av在线一区| av乱码一区二区三区| 2025年人妻中文字幕乱码在线| 亚洲天堂精品久久久| 日韩欧美制服诱惑一区在线| 亚洲av日韩高清hd| 亚洲免费av在线视频| 久精品人妻一区二区三区| 青青青青青操视频在线观看| 欧美久久久久久三级网| 国产午夜男女爽爽爽爽爽视频| 一个人免费在线观看ww视频| 精品av国产一区二区三区四区| 日本成人不卡一区二区| 日本午夜爽爽爽爽爽视频在线观看| 国产精品手机在线看片| 亚洲精品国产在线电影| 欧美黑人巨大性xxxxx猛交| 国产成人小视频在线观看无遮挡| 91久久精品色伊人6882| 中文字幕人妻被公上司喝醉在线 | 亚洲女人的天堂av| 日韩欧美国产一区ab| 一二三中文乱码亚洲乱码one| 香港三日本三韩国三欧美三级| 欧洲黄页网免费观看| 中文字幕在线第一页成人| 日本中文字幕一二区视频| www,久久久,com| 2025年人妻中文字幕乱码在线| 97人妻无码AV碰碰视频| 夜色撩人久久7777| 亚洲人妻国产精品综合| 日本在线不卡免费视频| 一个人免费在线观看ww视频| 可以在线观看的av中文字幕| 久久精品36亚洲精品束缚| 女蜜桃臀紧身瑜伽裤| 搡老熟女一区二区在线观看| 国产使劲操在线播放| 亚洲 欧美 精品 激情 偷拍| 51国产偷自视频在线播放| 国产成人一区二区三区电影网站| 亚洲午夜伦理视频在线 | 一区二区三区的久久的蜜桃的视频| 五十路熟女人妻一区二区9933| 精品国产亚洲av一淫| 精品久久久久久久久久久a√国产| 漂亮 人妻被中出中文| 婷婷色中文亚洲网68| 最后99天全集在线观看| huangse网站在线观看| 精品国产高潮中文字幕| 成人av免费不卡在线观看| 姐姐的朋友2在线观看中文字幕| 成年女人免费播放视频| 成人高清在线观看视频| 国产高清在线在线视频| 在线观看911精品国产| 中文字幕 人妻精品| 美女张开腿让男生操在线看| 99国内精品永久免费视频| 大香蕉大香蕉在线有码 av| 经典av尤物一区二区| 国产精品人妻熟女毛片av久| 人妻丝袜av在线播放网址| 国产大鸡巴大鸡巴操小骚逼小骚逼| 免费av岛国天堂网站| 57pao国产一区二区| 日韩精品一区二区三区在线播放| 偷偷玩弄新婚人妻h视频| 国产超码片内射在线| 无忧传媒在线观看视频| 插小穴高清无码中文字幕| 精品一区二区三区欧美| 91国产资源在线视频| 色97视频在线播放| 天天干天天日天天谢综合156| 国产美女午夜福利久久| 在线播放一区二区三区Av无码| 1024久久国产精品| 91欧美在线免费观看| 国产亚洲欧美另类在线观看| 97人妻人人澡爽人人精品| 日本av高清免费网站| 自拍偷拍日韩欧美亚洲| 免费成人va在线观看| 香蕉aⅴ一区二区三区| 午夜蜜桃一区二区三区| 黑人变态深video特大巨大| 国产黄色高清资源在线免费观看| 国产亚洲天堂天天一区| 免费看美女脱光衣服的视频| 欧美日韩亚洲国产无线码| 国产大鸡巴大鸡巴操小骚逼小骚逼| 9久在线视频只有精品| 色综合久久五月色婷婷综合| 人妻3p真实偷拍一二区| 天天摸天天干天天操科普| 亚洲国际青青操综合网站| 超级福利视频在线观看| 蜜臀成人av在线播放| 天天日夜夜干天天操| 国产一区二区久久久裸臀| 神马午夜在线观看视频| 视频久久久久久久人妻| 成人激情文学网人妻| 把腿张开让我插进去视频| 精品国产乱码一区二区三区乱| 亚洲av日韩av第一区二区三区| 91高清成人在线视频| 久草免费人妻视频在线| 色婷婷综合激情五月免费观看| 一区二区三区的久久的蜜桃的视频| 欧美视频综合第一页| 绯色av蜜臀vs少妇| 99精品免费观看视频| 国产视频网站一区二区三区| 免费手机黄页网址大全| 午夜成午夜成年片在线观看| 人妻无码色噜噜狠狠狠狠色| 中文字幕一区二区自拍| 成人性爱在线看四区| 青娱乐在线免费视频盛宴| 中文字幕一区二区三区人妻大片| 97精品综合久久在线| 在线免费91激情四射| 国产精品自拍在线视频| 38av一区二区三区| 日日夜夜狠狠干视频| 老有所依在线观看完整版| 黄色视频在线观看高清无码| 中文字幕av熟女人妻| 日本人妻精品久久久久久| 任你操任你干精品在线视频 | 青青热久免费精品视频在线观看| 欧美精品中文字幕久久二区| 国产极品美女久久久久久| av视网站在线观看| 男人的天堂一区二区在线观看| 天天日天天日天天擦| 99av国产精品欲麻豆| 中文字幕国产专区欧美激情 | 中文亚洲欧美日韩无线码| AV天堂一区二区免费试看| 91精品国产高清自在线看香蕉网 | 91国产在线视频免费观看| 欧美激情精品在线观看| 天天做天天干天天舔| 欧美特色aaa大片| 国产精品污污污久久| 欧美精品中文字幕久久二区| 黄色黄色黄片78在线| 不卡日韩av在线观看| 精品久久久久久久久久中文蒉| 亚洲 清纯 国产com| 久久久久五月天丁香社区| 亚洲综合一区成人在线| 欧美亚洲免费视频观看| 欧美男同性恋69视频| 色婷婷久久久久swag精品| aⅴ五十路av熟女中出| 18禁精品网站久久| 东游记中文字幕版哪里可以看到| 青春草视频在线免费播放| 91啪国自产中文字幕在线| 亚洲激情,偷拍视频| av大全在线播放免费| 黄色三级网站免费下载| 99久久99久国产黄毛片| 亚洲人成精品久久久久久久| 日韩亚洲高清在线观看| 天天操天天插天天色| 亚洲视频在线视频看视频在线| jiuse91九色视频| 任你操任你干精品在线视频| av手机免费在线观看高潮| 亚洲成人免费看电影| 91人妻精品一区二区久久| 日本熟妇喷水xxx| 成人综合亚洲欧美一区| 青娱乐极品视频青青草| 中文字幕高清资源站| 最后99天全集在线观看| 大陆av手机在线观看| 免费在线福利小视频| 精品高跟鞋丝袜一区二区| 亚洲专区激情在线观看视频| 欧美精产国品一二三区| 黄色的网站在线免费看| 久草视频福利在线首页| 自拍偷拍vs一区二区三区| 超级碰碰在线视频免费观看| 欧美日韩熟女一区二区三区| 天天日天天干天天要| yy96视频在线观看| 在线观看操大逼视频| 亚洲成人精品女人久久久| 亚洲 中文 自拍 另类 欧美| 亚洲区美熟妇久久久久| 午夜91一区二区三区| 中文字幕—97超碰网| 黄色中文字幕在线播放| 日韩熟女av天堂系列| 白白操白白色在线免费视频 | 亚洲青青操骚货在线视频| 狠狠操操操操操操操操操| 欧美xxx成人在线| 欧美精品一区二区三区xxxx| 和邻居少妇愉情中文字幕| 亚洲国产最大av综合|