Returns a connection to the INBO Watina database. The function can only be used from within the INBO network.
connect_watina()
A DBIConnection
object.
Don't forget to disconnect at the end of your R-script using
dbDisconnect
!
if (FALSE) { watina <- connect_watina() # Do your stuff. # Disconnect: dbDisconnect(watina) }