Skip to content

Commit

Permalink
Manual link check
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 5, 2021
1 parent fe14b8e commit 71400d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions vignettes/DBI-1.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -687,10 +687,10 @@ The idea of a common interface to databases has been successfully
implemented in various environments, for instance:

Java’s Database Connectivity (JDBC)
([www.javasoft.com](https://www.javasoft.com/products/jdbc/index.html)).
([www.javasoft.com](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/)).

In C through the Open Database Connectivity (ODBC)
([www.unixodbc.org](https://www.unixodbc.org/)).
([www.unixodbc.org](http://www.unixodbc.org/)).

Python’s Database Application Programming Interface
([www.python.org](https://wiki.python.org/moin/DatabaseProgramming)).
Expand Down
10 changes: 5 additions & 5 deletions vignettes/DBI-proposal.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ The ODBC protocol was developed by Microsoft to allow connectivity among
C/C++ applications and RDBMS. As you would expect, originally
implementations of the ODBC were only available under Windows
environments. There are various effort to create a Unix implementation
(see [the Unix ODBC](https://www.unixodbc.org/) web-site and @odbc.lj).
(see [the Unix ODBC](http://www.unixodbc.org/) web-site and @odbc.lj).
This approach looks promising because it allows us to write only one
back-end, instead of one per RDBMS. Since most RDBMS already provide
ODBC drivers, this could greatly simplify development. Unfortunately,
Expand Down Expand Up @@ -542,7 +542,7 @@ www.omegahat.net (link dead now: `https://www.omegahat.net/contrib/RS-DBI/index.
The R community has developed interfaces to some databases:
[RmSQL](https://cran.r-project.org/src/contrib/Archive/RmSQL/) is an
interface to the [mSQL](https://www.Hughes.com.au) database written by
Torsten Hothorn; [RPgSQL](https://www.nceas.ucsb.edu/~keitt/R) is an
Torsten Hothorn; [RPgSQL](https://sites.cns.utexas.edu/keittlab/software-0) is an
interface to [PostgreSQL](https://www.postgreSQL.org) and was written by
Timothy H. Keitt; [RODBC](https://www.stats.ox.ac.uk/pub/bdr/) is an
interface to ODBC, and it was written by [Michael
Expand All @@ -551,17 +551,17 @@ these see @R.imp-exp.)

The are R and S-Plus interfaces
to
[MySQL](https://www.mysql.org) that follow the propose RS-DBI API
[MySQL](https://dev.mysql.com/) that follow the propose RS-DBI API
described here; also, there’s an S-Plus interface
SOracle @RS-Oracle to
[Oracle](https://www.oracle.com/) (we expect to have an R implementation
soon.)

The idea of a common interface to databases has been successfully
implemented in Java’s Database Connectivity (JDBC)
([www.javasoft.com](https://www.javasoft.com/products/jdbc/index.html)),
([www.javasoft.com](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/)),
in C through the Open Database Connectivity (ODBC)
([www.unixodbc.org](https://www.unixodbc.org/)), in Python’s
([www.unixodbc.org](http://www.unixodbc.org/)), in Python’s
Database Application Programming Interface
([www.python.org](https://www.python.org)), and in Perl’s Database
Interface ([www.cpan.org](https://www.cpan.org)).
Expand Down

0 comments on commit 71400d9

Please sign in to comment.