Connect to DuckDB database instance
db_connect.Rd'db_connect' establishes a DuckDB connection in the location specified or in memory, and confirms that the 'httpfs' extension is installed.
Examples
if (FALSE) { # \dontrun{
if(interactive()){
connection <- db_connect(dbdir = ":memory:")
class(connection)
}
} # }