Description Usage Arguments Details Value Examples
Using a 32bit ODBC connection to the EDS Database, this function will run a SQL script using your systems 32bit version of R. It will return the results of that query.
1 |
SQL |
A character vector that contains appropriate SQL for the EDS database. |
You need to have an ODBC connection to the
EDS Database, named "Research". You also need the DBI
package installed.
This function creates a temporary directory in the current working directory, and then saves the result of the 32bit query to EDS database in that temp directory. It then reads in that data, and cleans up the temporary files.
A dataframe
1 2 3 4 5 | # Do not run
SQL <- "SELECT TERM_BASIC.TERM_ID,
FROM TERM_BASIC
WHERE ( TERM_BASIC.SCHOOL IN ( 'CC' ) )"
# qry_eds(SQL)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.