Issue1182963

classification
Title: Use the new MySQL driver class
Type: Severity: normal
Components: Library Versions:
Milestone:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: trondandersen, zyasoft
Priority: low Keywords:

Created on 2005-04-14.11:17:54 by trondandersen, last changed 2009-03-08.04:47:49 by zyasoft.

Files
File name Uploaded Description Edit Remove
1182963.patch trondandersen, 2007-02-11.00:17:50 Small patch for the build file
Messages
msg970 (view) Author: Trond Andersen (trondandersen) Date: 2005-04-14.11:17:54
In the build.xml there's a check for MySQL availability
by using the following:

<available property="mysql.present"
      classname="org.gjt.mm.mysql.Driver"
      classpath="${mysql.jar}"
/>

According to MySQL documentation:

http://dev.mysql.com/doc/connector/j/en/cj-configuration-properties.html

The mm driver is the old driver to be used. It's still
part of the jar file, but recommends using the
following class:

com.mysql.jdbc.Driver
msg971 (view) Author: Trond Andersen (trondandersen) Date: 2007-02-11.00:17:50
File Added: 1182963.patch
msg4190 (view) Author: Jim Baker (zyasoft) Date: 2009-03-08.04:47:28
We now support the latest MySQL driver in Jython 2.5
(mysql-connector-java-5.1.6.jar).
History
Date User Action Args
2009-03-08 04:47:49zyasoftsetresolution: out of date
2009-03-08 04:47:29zyasoftsetstatus: open -> closed
nosy: + zyasoft
messages: + msg4190
2005-04-14 11:17:54trondandersencreate