|
|
|
@ -483,7 +483,7 @@ namespace ZKLT.Hadoop
|
|
|
|
|
_result += _connection.Execute(_command.ToString(), _params);
|
|
|
|
|
}
|
|
|
|
|
_connection.Close();
|
|
|
|
|
if (_result == _data.Count)
|
|
|
|
|
if (_result >= _data.Count)
|
|
|
|
|
{
|
|
|
|
|
_scope.Complete();
|
|
|
|
|
return true;
|
|
|
|
@ -581,7 +581,7 @@ namespace ZKLT.Hadoop
|
|
|
|
|
_result += _connection.Execute(_command.ToString(), _params);
|
|
|
|
|
}
|
|
|
|
|
_connection.Close();
|
|
|
|
|
if (_result == _data.Count)
|
|
|
|
|
if (_result >= _data.Count)
|
|
|
|
|
{
|
|
|
|
|
_scope.Complete();
|
|
|
|
|
return true;
|
|
|
|
@ -657,7 +657,7 @@ namespace ZKLT.Hadoop
|
|
|
|
|
_result += _connection.Execute(_command.ToString(), _params);
|
|
|
|
|
}
|
|
|
|
|
_connection.Close();
|
|
|
|
|
if (_result == _data.Count)
|
|
|
|
|
if (_result >= _data.Count)
|
|
|
|
|
{
|
|
|
|
|
_scope.Complete();
|
|
|
|
|
return true;
|
|
|
|
|