-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
SQL connection improvements #1662
Comments
Hi Chang, I may try a Heroku set-up at some point, and that would presumably make things easier. Or if someone else is willing to integrate to to io module, they are more than welcome. regards, |
No worries, I will gladly incorporate it myself. Did you have trouble building the pandas extensions or installing Cython itself? On Jul 23, 2012, at 5:22 PM, catawbasam wrote:
|
Chang, Sounds good. My problem was getting Cython installed correctly. With the 'hello world' example at http://docs.cython.org/src/userguide/tutorial.html, for example, I get: c:\keithc\python>python setup.py build_ext --inplace cheers, -----Original Message----- No worries, I will gladly incorporate it myself. Did you have trouble building the pandas extensions or installing Cython itself? On Jul 23, 2012, at 5:22 PM, catawbasam wrote:
Reply to this email directly or view it on GitHub: |
You might be running into a known issue here with Cython installation on Windows. Have you looked at http://wiki.cython.org/InstallingOnWindows? |
Yeah, tried installing from Gohlke. Tried Microsoft Visual Studio 2008 Express edition a couple of times with no luck. And MinGW is no good for 64-bit Win. It would be nice if there were a way to run pandas nosetests without having to rebuild the cython stuff for changes to pure Python. Keith -----Original Message----- You might be running into a known issue here with Cython. Have you looked at http://wiki.cython.org/InstallingOnWindows? Reply to this email directly or view it on GitHub: |
Yikes. Time for Linux ;) j/k I agree completely on the last point. There's no good solution for now unfortunately but we'll keep it in mind and try to look for something down the road On Jul 24, 2012, at 9:36 AM, catawbasam wrote:
|
Have you tried this: http://wiki.cython.org/64BitCythonExtensionsOnWindows |
Hey Chang, Thanks! Looks like there may be more details there than last go-around, so I'll plan on giving it another shot. Cheers, -----Original Message----- Have you tried this: http://wiki.cython.org/64BitCythonExtensionsOnWindows Reply to this email directly or view it on GitHub: |
Was this Keith's code ever incorporated? I wrote basic mysql functionality (https://github.com/danielballan/pandas/tree/mysql) but his cointribution more comprehensive. |
No they have not been incorporated. Would really appreciate the help if you can make it into a PR (yours or keith's code). We're really shorthanded here :) |
Submitted. This is my first pull request on any project, so let me know if I'm doing it wrong. |
As an update to this ticket, #2482 is the URL of the pull request. |
Close in favour of 4163 (will migrate the 0.13 deadline ;) ). |
From pydata mailing list:
Been enjoying pandas, and using it some with SQL. I've posted a gist at git://gist.github.com/3164289.git with code that sniffs DataFrame types, creates a table if needed, and writes the dataframe to Sqlite, MySQL, Oracle, or PostgreSQL.
It is lightly tested -- used on a couple of ad hoc jobs so far -- and does not save or restore indexes, but hope you'll find it useful.
The text was updated successfully, but these errors were encountered: