Calling a table from Heroku Postgresql

This is not related to R but to postgresql's sql dialect, it is not case sensitive by default so you have to double quote column names if they contain upper case letters.

dbGetQuery(conh, 'SELECT "Open", "High", "Low" FROM apple WHERE "Open" > 70')

when working with Postgresql is better not to use upper case letters to keep things simple.

Edit: Now that I recall, I already told you this before