/*
 * call-seq:
 *    res.result_error_message() -> String
 *
 * Returns the error message of the command as a string. 
 */
static VALUE
pgresult_result_error_message(VALUE self)
{
        return rb_tainted_str_new2(PQresultErrorMessage(get_pgresult(self)));
}