on_connection_open <- function(con, code) {
  # RStudio v1.1 generic connection interface --------------------------------
  observer <- getOption("connectionObserver")
  if (!is.null(observer)) {
      #host <- con@info$servername
      observer$connectionOpened(
        # connection type
        type = con@info$dbms.name,
        # name displayed in connection pane
        displayName = con@info$dbname,
        # host key
        host =  compute_host_name(con),
        # icon for connection
        icon = odbc::odbcConnectionIcon(con),
        # connection code
        connectCode = code,
        # disconnection code
        disconnect = function() {
          disconnect(con)
        },
        listObjectTypes = function () {
          odbc::odbcListObjectTypes(con)
        },
        # table enumeration code
        listObjects = function(...) {
          odbc::odbcListObjects(con, ...)
        },
        # column enumeration code
        listColumns = function(...) {
          odbc::odbcListColumns(con, ...)
        },
        # table preview code
        previewObject = function(rowLimit, ...) {
          odbc::odbcPreviewObject(con, rowLimit, ...)
        },
        # other actions that can be executed on this connection
        actions = odbc::odbcConnectionActions(con),
        # raw connection object
        connectionObject = con
      )
  }
}
on_connection_closed <- function(con) {
  # make sure we have an observer
  observer <- getOption("connectionObserver")
  if (is.null(observer))
    return(invisible(NULL))
  type <- con@info$dbms.name
  host <- compute_host_name(con)
  observer$connectionClosed(type, host)
}
on_connection_updated <- function(con, hint) {
  # make sure we have an observer
  observer <- getOption("connectionObserver")
  if (is.null(observer))
    return(invisible(NULL))
  type <- con@info$dbms.name
  host <- compute_host_name(con)
  observer$connectionUpdated(type, host, hint = hint)
}
compute_host_name <- function(connection) {
  string_values <- function(x) {
    x <- tryCatch(x, error = function(x) "")
    unique(x[nzchar(x)])
  }
  paste(collapse = "_", string_values(c(connection@info$username,
                                        connection@info$dbname, if (!identical(connection@info$servername,
                                                                               connection@info$dbname)) connection@info$servername)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.