Si haces un INSERT no puedes poner LIMIT, como haces para sacar el Limit en la Consulta?? de esta manera:
Código PHP:
$this->Query->Close;
$this->Query->LimitStart = '-1';
$this->Query->LimitCount = '-1';
$this->QUsuarios->writeSQL('<sentencia insert>');
$this->Query->Open;
$this->Query->Close;
Espero te sirva.