https://github.com/gfcm/MSSQL
Tools to Work with Microsoft SQL Server Databases via RODBC
https://github.com/gfcm/MSSQL
Last synced: 3 months ago
JSON representation
Tools to Work with Microsoft SQL Server Databases via RODBC
- Host: GitHub
- URL: https://github.com/gfcm/MSSQL
- Owner: gfcm
- Created: 2020-10-16T13:57:45.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-22T10:19:53.000Z (about 1 year ago)
- Last Synced: 2025-07-10T19:43:31.419Z (4 months ago)
- Language: R
- Homepage:
- Size: 86.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
- jimsghstars - gfcm/MSSQL - Tools to Work with Microsoft SQL Server Databases via RODBC (R)
README
[](https://cran.r-project.org/package=MSSQL)
[](https://cran.r-project.org/package=MSSQL)
[](https://cran.r-project.org/package=MSSQL)
MSSQL
=====
MSSQL provides tools that extend the functionality of the
[RODBC](https://cran.r-project.org/package=RODBC) package to work with Microsoft
SQL Server databases. Makes it easier to browse the database and examine
individual tables and views.
MSSQL is implemented as an [R](https://www.r-project.org) package and available
on [CRAN](https://cran.r-project.org/package=MSSQL).
Installation
------------
MSSQL can be installed from CRAN using the `install.packages` command:
```R
install.packages("MSSQL")
```
Usage
-----
For a summary of the package:
```R
library(MSSQL)
?MSSQL
```
Development
-----------
MSSQL is developed openly on [GitHub](https://github.com/gfcm/MSSQL).
Feel free to open an [issue](https://github.com/gfcm/MSSQL/issues) there if you
encounter problems or have suggestions for future versions.
The current development version can be installed using:
```R
library(remotes)
install_github("gfcm/MSSQL")
```