Created
February 10, 2017 03:30
-
-
Save masnick/513b1f5fc1cb2e80c4bac2ca79a8c177 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* NOTE: this ADO uses shell calls to run `rm`, so it could potentally delete files | |
* from your computer. Use at your own risk. | |
cap drop program loadsql | |
program define loadsql | |
*! Load the output of an SQL file into Stata, version 1.3 ([email protected]) | |
*! Based on http://stackoverflow.com/a/12272627/173351 | |
version 14.1 | |
syntax using/, DSN(string) [User(string) Password(string) CLEAR NOQuote LOWercase SQLshow ALLSTRing DATESTRing] | |
#delimit; | |
tempname mysqlfile exec line; | |
!cat "`using'" | ruby -e "print ARGF.read.gsub(/^\s+--.*$/, '').gsub(/\s+/, ' ')" > "`using'_oneline"; | |
file open `mysqlfile' using `"`using'_oneline"', read text; | |
file read `mysqlfile' `line'; | |
while r(eof)==0 {; | |
local `exec' `"``exec'' ``line''"'; | |
file read `mysqlfile' `line'; | |
}; | |
file close `mysqlfile'; | |
!rm "`using'_oneline"; | |
odbc load, exec(`"``exec''"') dsn(`"`dsn'"') user(`"`user'"') password(`"`password'"') `clear' `noquote' `lowercase' `sqlshow' `allstring' `datestring'; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment