[Jython-users] remote login mysql bug in RH8 or com.ziclix.python.sql zxJDBC mysql
by chrisf other posts by this author
Feb 27 2003 8:54AM messages near this date
[Jython-users] REF : AssertionError: SRE module mismatch
|
Re: [Jython-users] remote login mysql bug in RH8 or com.ziclix.python.sql
zxJDBC mysql
Stange behaviour from the com.ziclix.python.sql mysql database connector.
I have my mysql server 3.23.54a-4. up and running on a RH8 box.
from the command line of a remote machine:
mysql -hXXX.XXX.XXX -P3306 -utest_user -Dtest_db
WORKS
Programatically from remote machine:
from com.ziclix.python.sql import zxJDBC
db = zxJDBC.connect('jdbc:mysql://XXX.XXX.XXX:3306/test_db, 'test_user',
None,'org.gjt.mm.mysql.Driver')
Results in Database Error : driver not found
Here is the WIERD part
Programatically from localhost machine:
from com.ziclix.python.sql import zxJDBC
db = zxJDBC.connect('jdbc:mysql://XXX.XXX.XXX:3306/test_db, 'test_user',
None,'org.gjt.mm.mysql.Driver')
WORKS
Whats UP
Any help greatly appreciated,
Chris
-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
Jython-users mailing list
Jython-users@[...].net
https://lists.sourceforge.net/lists/listinfo/jython-users
Thread:
chrisf
David Ripton
|