-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getSymbols.PostgreSQL #90
base: master
Are you sure you want to change the base?
Conversation
If no symbols are found for(i in 1:length(Symbols)) { Browse[2]> 1:length(Symbols) [1] 1 0 But then this is correct. Browse[2]> seq_along(Symbols) # REPLACED integer(0) Browse[2]>
Heavily based on getSymbols.MySQL.Rd, but it has some PostgreSQL specifics.
Adds the function ( with documentation ) getSymbols.PostgreSQL This very very similar to the getSymbols.MySQL code. What is more/different follows. This function can have PostgreSQL tables named MSFT returning symbols and columns MSFT and MSFT.Open. Also, this function can have PostgreSQL tables named msft returning symbols Two extra parameters may be passed: options and search_path. options: is a pass-through to the RPostgreSQL connection. search_path: allows the user to set a specific search path when looking for PostgreSQL tables. Otherwise, this is the same as the getSymbols.MySQL code. |
Please close. I have implemented this elsewhere. |
If no symbols are found
But then this is correct.
I made those changes everywhere in the file.