@LeonE, yes, I did try to download ojdbc14.jar and put it in the jdbc_driver folder
although oracle website say it is for oracle 10g....
as for the config.properties, I renamed it because .properties extends not allowed to upload.
I post it here again.....
#Lines starting with '#' are comments.
#Backslash character at the end of line means that the command continues in the next line.
DriverClass=oracle.jdbc.OracleDriver
JdbcUrl=jdbc:Oracle:thin:tx/123@192.168.1.13:1521:cms
ServerPort=17178
#DriverClass=com.mysql.jdbc.Driver
#JdbcUrl=jdbc:mysql://localhost/test?characterEncoding=utf8
#SQL Server
#DriverClass=net.sourceforge.jtds.jdbc.Driver
#JdbcUrl=jdbc:jtds:sqlserver://<database server ip>/<database>
#User=tx
#Password=123
#ServerPort=17178
#If Debug is true then this file will be reloaded on every query.
#This is useful if you need to modify the queries.
Debug=true
#commands
#sql.create_table=CREATE TABLE animals (\
# id INT NOT NULL AUTO_INCREMENT,\
# name CHAR(30) NOT NULL,\
# image BLOB,\
# PRIMARY KEY (id))
#sql.insert_animal=INSERT INTO animals VALUES (null, ?,?)
#sql.select_animal=SELECT name, image FROM animals WHERE name = ?
sry if any inconvenience caused.
LTC