Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gfcm/MSSQL
Tools to Work with Microsoft SQL Server Databases via RODBC
https://github.com/gfcm/MSSQL
Last synced: 8 days 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 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-22T10:19:53.000Z (about 2 months ago)
- Last Synced: 2024-11-24T17:27:16.156Z (18 days ago)
- Language: R
- Homepage:
- Size: 86.9 KB
- Stars: 2
- Watchers: 2
- 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
[![CRAN Status](https://r-pkg.org/badges/version/MSSQL)](https://cran.r-project.org/package=MSSQL)
[![CRAN Monthly](https://cranlogs.r-pkg.org/badges/MSSQL)](https://cran.r-project.org/package=MSSQL)
[![CRAN Total](https://cranlogs.r-pkg.org/badges/grand-total/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")
```