1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#choice for persist variable is DB or FILE
persist=DB
#========================================================
#fill these properties for DB persistence to work
#========================================================
# this is the string to create the table
# choose one of the options
#----------------------------------------------------
# hsql
#jdbc.table = create table replhashmap(key varchar, keybin varbinary, valbin varbinary)
# oracle
jdbc.table = create table replhashmap(key varchar2(100), keybin blob, valbin blob)
# Db2 and other
#jdbc.table = create table replhashmap(key varchar(100), keybin blob, valbin blob)
# insert other
#jdbc.table =
#--------------------- end of table create string
# Db related properties
jdbc.User =
jdbc.Pass =
jdbc.Conn =
jdbc.Driver =
#================ end of DB properties
#========================================================
# File-based PersistenceManager
#========================================================
# The class that implements the file-based PersistenceManager
# (default is FiledPersistenceManager)
# filePersistMgr =
|