$wpdb->get_results not returning an array

It has nothing to do with $wpdb. It’s PHP parse error.

print_r is a function, so you can’t do print_r $datarow;
You should use print_r( $datarow ); instead.