Is there a way to set a global database connection in a Rnotebook so you don't have to set the database connection for each SQL chunk?
Currently I have to set it as follows for each SQL chunk:
```{sql connection = my_connection}
select * from my_table
```
I would like to just be able to do the following:
```{sql}
select * from my_table
```