Hi, are you talking about the database properties?

For interbase it is 

datasource.name             aqpjdbc
datasource.url              jdbc:interbase://localhost/d:/db/db.gdb
datasource.classname        interbase.interclient.Driver
datasource.username         usename
datasource.password         password
datasource.isolationlevel   read_committed

# -------------------------------------------------------------
# JDBC Connection Pool Configuration
# -------------------------------------------------------------

#  JDBC connection checking level.
#     0 = no special checking
#     1 = check physical connection is still open before reusing it
#     2 = try every connection before reusing it
jdbc.connchecklevel     1

#  max age for jdbc connections
#     nb of minutes a connection can be kept in the pool
jdbc.connmaxage         30

#  max concurrent threads on same tx/connection
jdbc.connmaxthreads     4

#  max wait time if more than connmaxthreads threads request conn
#     value is in seconds
jdbc.connexcltimeout    30

# test statement
jdbc.connteststmt       select 1


For SQLServer it is 

datasource.name         aqpjdbc
datasource.url          jdbc:inetdae7a:localhost:1433?database=mydb
datasource.classname    com.inet.tds.TdsDriver
datasource.username     username
datasource.password     password

# -------------------------------------------------------------
# JDBC Connection Pool Configuration
# -------------------------------------------------------------

#  JDBC connection checking level.
#     0 = no special checking
#     1 = check physical connection is still open before reusing it
#     2 = try every connection before reusing it
jdbc.connchecklevel     1

#  max age for jdbc connections
#     nb of minutes a connection can be kept in the pool
jdbc.connmaxage         30

#  max concurrent threads on same tx/connection
jdbc.connmaxthreads     4

#  max wait time if more than connmaxthreads threads request conn
#     value is in seconds
jdbc.connexcltimeout    30

# test statement
jdbc.connteststmt       select 1


Just make sure that the jar file with your driver is on the classpath
(you can verify it using javap driver class e.g. javap
com.inet.tds.TdsDriver)

Miro


-----Original Message-----
From: Fabio Marano [mailto:[EMAIL PROTECTED]] 
Sent: Friday, October 26, 2001 8:36 PM
To: [EMAIL PROTECTED]
Subject: JONAS driver

HI

I've seen your message on JONAS web site.
Could you please tell me how do you set the driver class?
I've setted the same dsource.properties like yours but it continues to tell
me : ClassNotFound !

Thanks

Regards

Fabio


----
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body of the message "unsubscribe jonas-users".
For general help, send email to [EMAIL PROTECTED] and
include in the body of the message "help".

Reply via email to