R/mdbExistsTable.R

mdbExistsTable <- function(con, name){
	if(class(con)=="PostgreSQLConnection"){
		return(dbExistsTable(con, tolower(name)))
	} else {
		return(dbExistsTable(con, name))
	}
}

Try the RObsDat package in your browser

Any scripts or data that you put into this service are public.

RObsDat documentation built on May 2, 2019, 5:55 p.m.