Search notes:

R: package odbc and SQL Server

R DBI, ODBC and SQL Server data types

Determine the used DLL of driver

With dbGetInfo, it's possible to determine the DLL that is used for the ODBC connection. It is sqlsrv32.dll.
library(odbc)

sqlServer <- dbConnect(odbc(),
          driver   = "SQL Server" ,
          server   = Sys.getenv("COMPUTERNAME"),
          database ='tq84_db'
);

dbGetInfo(sqlServer)$drivername;
#
#  "SQLSRV32.DLL"
Github repository about-r, path: /packages/odbc/SQLServer/drivername.R

See also

R package odbc.

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758209551, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/languages/R/packages/odbc/SQLServer/index(56): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78