Returns a connection to the INBO Watina database. The function can only be used from within the INBO network.

connect_watina()

Value

A DBIConnection object.

Details

Don't forget to disconnect at the end of your R-script using dbDisconnect!

Examples

if (FALSE) {
watina <- connect_watina()
# Do your stuff.
# Disconnect:
dbDisconnect(watina)
}