How to get particular data from wp_list_comments outside the loop?

Use get_comments function.Pass Post_id as parameter.See below example

<?php 
$comments = get_comments('post_id=15');
foreach($comments as $comment) :
    echo($comment->comment_author);
endforeach;
?>

for more detail please check below link

http://codex.wordpress.org/Function_Reference/get_comments

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)