Skip to content

Commit

Permalink
Increasing version number
Browse files Browse the repository at this point in the history
  • Loading branch information
schuemie committed Jan 29, 2025
1 parent 052ea0d commit aaf0428
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: DatabaseConnector
Type: Package
Title: Connecting to Various Database Platforms
Version: 6.3.3
Date: 2025-01-15
Version: 6.4.0
Date: 2025-01-29
Authors@R: c(
person("Martijn", "Schuemie", email = "[email protected]", role = c("aut", "cre")),
person("Marc", "Suchard", role = c("aut")),
Expand Down
1 change: 0 additions & 1 deletion DatabaseConnector.Rproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Version: 1.0
ProjectId: 9d51e576-41a3-432f-b696-8bfdc3eed676

RestoreWorkspace: No
SaveWorkspace: No
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
DatabaseConnector 6.4.0
=======================

Changes:

- Adding support for InterSystems IRIS.



DatabaseConnector 6.3.3
=======================

Expand Down
2 changes: 1 addition & 1 deletion R/Sql.R
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ executeSql <- function(connection,
startQuery <- Sys.time()
# InterSystems IRIS JDBC supports batch updates but does not have a separate
# executeLargeBatch() method
if (con@dbms == "iris") {
if (dbms == "iris") {
rowsAffected <- c(rowsAffected, rJava::.jcall(statement, "[I", "executeBatch"))
} else {
rowsAffected <- c(rowsAffected, rJava::.jcall(statement, "[J", "executeLargeBatch"))
Expand Down
2 changes: 1 addition & 1 deletion man/downloadJdbcDrivers.Rd

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

7 changes: 7 additions & 0 deletions man/insertTable.Rd

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

0 comments on commit aaf0428

Please sign in to comment.