Hi Erel,
I am attaching the zip file of the code that I am executing ..
And the Config.Properties file is:
#Lines starting with '#' are comments.
#Backslash character at the end of line means that the command continues in the next line.
#DATABASE CONFIGURATION
#DriverClass=com.mysql.jdbc.Driver
#JdbcUrl=jdbc:mysql://localhost/test?characterEncoding=utf8
DriverClass=org.sqlite.JDBC
JdbcUrl=jdbc:sqlite:C:\temp\test.db
#User=root
#Password=
#Java server port
ServerPort=17178
#example of MS SQL Server configuration:
#DriverClass=net.sourceforge.jtds.jdbc.Driver
#JdbcUrl=jdbc:jtds:sqlserver://<server address>/<database>
#example of postegres configuration:
#JdbcUrl=jdbc
ostgresql://localhost/test
#DriverClass=org.postgresql.Driver
#SQL COMMANDS
#sql.create_table=CREATE TABLE IF NOT EXISTS animals (\
# id INTEGER PRIMARY KEY AUTO_INCREMENT,\
# name CHAR(30) NOT NULL,\
# image BLOB)
#sql.insert_animal=INSERT INTO animals VALUES (null, ?,?)
#sql.select_animal=SELECT name, image, id FROM animals
sql.create_table=CREATE TABLE article (id numeric(10,4) ,articleName text);
sql.select_article=select * from article where articleName=?
sql.insert_article=INSERT INTO article VALUES(?, ?)
I am executing RUNRLC.BAT in the background..
Ps. tell me where I am erring..
Thanks..