| 1234567891011121314151617181920212223242526272829 |
- % Generated by roxygen2: do not edit by hand
- % Please edit documentation in R/db_is_shema_exist.R
- \name{db_is_shema_exist}
- \alias{db_is_shema_exist}
- \title{Does the schema exist}
- \usage{
- db_is_shema_exist(schema = NULL)
- }
- \arguments{
- \item{schema}{str A database schema name.}
- }
- \value{
- TRUE/FALSE.
- }
- \description{
- Kontrollime kas andmebaasi schema eksisteerib.
- }
- \examples{
- \dontrun{
- db_is_shema_exist(schema = "public")
- }
- }
- \seealso{
- \code{\link[=db_connect]{db_connect()}}, \code{\link[=get_config]{get_config()}}, \code{\link[=db_all_schemas]{db_all_schemas()}}
- }
- \keyword{database,}
- \keyword{schema}
|