Skip to content

Commit

Permalink
odbc 1.4.1 release (#705)
Browse files Browse the repository at this point in the history
* Polish news
* Rebuild readme
* Correctly wrap news
* Re-document
* Note about resubmission
* Increment version number to 1.4.1
  • Loading branch information
hadley authored Dec 21, 2023
1 parent 4e9d6a7 commit 2f66e88
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: odbc
Title: Connect to ODBC Compatible Databases (using the DBI Interface)
Version: 1.4.0.9000
Version: 1.4.1
Authors@R: c(
person("Jim", "Hester", role = "aut"),
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre")),
Expand Down
16 changes: 7 additions & 9 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
# odbc (development version)
# odbc 1.4.1

* The Microsoft SQL Server method for `odbcDataType()` will now return `"BIGINT"`
for integer64 objects rather than converting to `"FLOAT"` (@simonpcouch, #698).
* New `odbcListConfig()` lists configuration files on Mac and Linux
(@simonpcouch, #565).

* `databricks()` now works with manually supplied `pwd` and `uid` (#690).

* Oracle: uses correct parent class (#685).

* SQL Server: correctly enumerate schemas across databases in connections pane
(@detule, #527).

* Added a function `odbcListConfig()` to help locate configuration files on
macOS and Linux (@simonpcouch, #565).

* Use correct parent class for Oracle (#685).

* Removed the `driver_info` class from `dbGetInfo()` output (@simonpcouch, #667).
* SQL Server: now uses column type `"BIGINT"` integer64 objects
(@simonpcouch, #698).

# odbc 1.4.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ with the driver manager. The odbc package is built on top of the
[nanodbc](https://nanodbc.github.io/nanodbc/) C++ library. To interface
with DBMSs using R and odbc:

<img src="man/figures/r-interface.png" alt="A high-level workflow for using the R interface in 3 steps. In step 1, configure drivers and data sources, the functions odbcListDrivers() and odbcListDataSources() help to interface with the driver manager. In step 2, the dbConnect() function, called with the first argument odbc(), connects to a database using the specified ODBC driver to create a connection object &quot;con.&quot; Finally, in step 3, that connection object can be passed to various functions to retrieve information on database structure, iteratively develop queries, and query data objects." width="1824" />
<img src="man/figures/r-interface.png" alt="A high-level workflow for using the R interface in 3 steps. In step 1, configure drivers and data sources, the functions odbcListDrivers() and odbcListDataSources() help to interface with the driver manager. In step 2, the dbConnect() function, called with the first argument odbc(), connects to a database using the specified ODBC driver to create a connection object &quot;con.&quot; Finally, in step 3, that connection object can be passed to various functions to retrieve information on database structure, iteratively develop queries, and query data objects." width="1302" />

You might also use the [dbplyr package](https://dbplyr.tidyverse.org/)
to automatically generate SQL from your dplyr code.
Expand Down
5 changes: 4 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## R CMD check results

0 errors | 0 warnings | 0 notes
0 errors | 0 warnings | 1 notes

There was one note: Days since last update: 5.
I discovered a severe breakage for Oracle users and wanted to get a fix out as soon as possible.

## revdepcheck results

Expand Down
10 changes: 6 additions & 4 deletions man/SQLServer.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/odbcConnectionSchemas.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2f66e88

Please sign in to comment.