comment_load($cid)
drupal/modules/comment/comment.module, line 1191
Load the entire comment by cid.
$cid The identifying comment id.
The comment object.
function comment_load($cid) {
return db_query('SELECT * FROM {comment} WHERE cid = :cid', array(':cid' => $cid))->fetchObject();
}