-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from teramonagi/feature/issue1
First release(ver 0.1)
- Loading branch information
Showing
15 changed files
with
112 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Package: RODBCDBI | ||
Type: Package | ||
Version: 0.1 | ||
Title: Provides access to databases through the ODBC interface | ||
Title: Provides Access to Databases Through the ODBC Interface | ||
Author: teramonagi | ||
Maintainer: teramonagi <[email protected]> | ||
Description: RODBCDBI is an implementation of R's DBI interface using ODBC as a | ||
Maintainer: Nagi Teramo <[email protected]> | ||
Description: An implementation of R's DBI interface using ODBC package as a | ||
back-end. This allows R to connect to any DBMS that has a ODBC driver. | ||
License: BSD | ||
License: MIT + file LICENSE | ||
Imports: | ||
methods, | ||
DBI, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
YEAR: 2015-2015 | ||
COPYRIGHT HOLDER: Nagi Teramo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/ODBCConnection.R | ||
\docType{methods} | ||
\name{dbDisconnect,ODBCConnection-method} | ||
\alias{dbDisconnect,ODBCConnection-method} | ||
\title{Close a current session.} | ||
\usage{ | ||
\S4method{dbDisconnect}{ODBCConnection}(conn) | ||
} | ||
\arguments{ | ||
\item{conn}{a \code{\linkS4class{ODBCConnection}} object, produced by \code{\link[DBI]{dbConnect}}} | ||
} | ||
\description{ | ||
Close a current session. | ||
} | ||
\examples{ | ||
\dontrun{ | ||
library(DBI) | ||
con <- dbConnect(RODBCDBI::ODBC(), dsn="test", user="sa", password="Password12!") | ||
dbDisconnect(con) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
library("testthat") | ||
library("RODBCDBI") | ||
test_check("RODBCDBI") | ||
if (identical(Sys.getenv("NOT_CRAN"), "true")){ | ||
test_check("RODBCDBI") | ||
} |