Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-14 Thread Marcelino de la Cruz Rot
It is very easy. You should define your variable connectionString before passing it to get_DB_info(). I.e.: ### ** Examples connectionString <- WHATEVER_IS_CONNECTIONSTRING get_DB_info(connectionString) This would remove your error. Cheers, Marcelino. El 14/03/2018 a las 22:15, martia

Re: [R-pkg-devel] Weird error message during R CMD Check

2018-03-14 Thread martiankabe
Hi Duncan, could you help me fix this issue, please? Below is function which creates connection string. #' Create connection string from function parameters #' #' This function defines SQL Server connection string #' from function parameters. #' @param datasource Server name #' @pa