I have successfully installed Weka and need it to connect to our MS SQL Server. But when I start Weka I get the below error:
# java -Xmx1000M -jar weka.jar
---Registering Weka Editors---
Trying to add database driver (JDBC): jdbc.idbDriver - Error, not in CLASSPATH?
Where I can get a the .jar or lib files where I have only the below listed .jar files:
# find . -name "*.jar"
./weka.jar
./weka-src.jar
./remoteExperimentServer.jar
[weka-3-6-12]#
What else I need to install to run Weka successfully.
As per the comment below this is the content of my "weka/experiment/DatabaseUtils.props" file:
# grep -i idbDriver weka/experiment/DatabaseUtils.props
#jdbcDriver=RmiJdbc.RJDriver,jdbc.idbDriver
#jdbcDriver=jdbc.idbDriver
#jdbcDriver=RmiJdbc.RJDriver,jdbc.idbDriver,org.gjt.mm.mysql.Driver,com.mckoi.JDBCDriver,org.hsqldb.jdbcDriver
Since every line starts with '#' that has jdbc.idbDriver I believe that these lines are comment. Am I correct in my understanding - also I believe that this warning / error which can be ignored.
But please let me know what changes I need to make to connect Weka to MS SQL Databases?