在 Solaris 上为 jython 2.5 编译 Mysqldb
我在 Windows 上使用了 python2.6 + MySQL,并且有可用的二进制文件。
我想让整个事情在 Solaris 上工作,
因此从
我必须安装安装工具,这已经完成了。 爆炸了 MySQL-python-1.2.3c1
当我这样做时, /jython2.5.1/jython setup.py build
错误 -
`File "/opt/somepath/MySQL-python-1.2.3c1/setup_windows.py", line 2, in get_config
import os, sys, _winreg
ImportError: No module named _winreg`
我不明白为什么它需要 windows.py。要么我使用了错误的代码,要么我没有传递正确的标志。或者我要在其他地方切线 8-)
抱歉,这是我第一次在 Solaris 上编译类似驱动程序的东西。 任何建议表示赞赏。
Jython:2.5.1
索拉里斯:5.9
MySQL-5.1.42
I have used python2.6 + MySQL on Windows and there are binaries available.
I wanted to get the whole thing working on Solaris
Hence got the Mysql-Python package from here
I had to get the setuptools installed which is done.
Exploded the MySQL-python-1.2.3c1
When I this/jython2.5.1/jython setup.py build
Error -
`File "/opt/somepath/MySQL-python-1.2.3c1/setup_windows.py", line 2, in get_config
import os, sys, _winreg
ImportError: No module named _winreg`
I don't understand why it would require windows.py. Either I'm using the incorrect code or I'm not passing the correct flags. Or I'm going on a tangent somewhere else 8-)
Sorry, this is the first time I'm compiling something like a driver on Solaris.
Any suggestions are appreciated.
Jython : 2.5.1
Solaris : 5.9
MySQL - 5.1.42
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
zxJDBC
和 JDBC而不是外部 DB-API 适配器。You should be using
zxJDBC
and JDBC instead of an external DB-API adapter.