si te fijas en la documentacion
www.php.net/mysql_query Cita: For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error.
ahi te dice que la funcion retornara un booleano .. entonces
Código PHP:
$Recordset2 = mysql_query($actualiza, $cnn) or die(mysql_error());
if ($Recordset2) {
echo 'exito';
} else {
echo 'fallo';
}
saludos.