home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / Komercni / VAgeJava / ivj35 / setup / JSP.Cab / F27292_ns.prp < prev    next >
Text File  |  2000-08-10  |  7KB  |  259 lines

  1. !---------------------------------------------------------------------
  2. !
  3. ! BASIC PROPERTIES
  4. !
  5. !---------------------------------------------------------------------
  6.  
  7. !
  8. ! Path where index tables are held. Can be absolute or relative 
  9. ! to the properties file. Defaults to tablePath.
  10. !
  11. indexPath=./index
  12. !
  13. ! Path where system tables are held. Can be absolute or relative to 
  14. ! the properties file. Defaults to tablePath.
  15. !
  16. systemPath=./system
  17. !
  18. ! Path where database tables are held. Can be absolute or relative 
  19. ! to the properties file. Defaults to "current" directory.
  20. !
  21. tablePath=./tables
  22. !
  23. ! Path where results set tables are held. Can be absolute or relative 
  24. ! to the properties file. Defaults to tablePath.
  25. !
  26. tmpPath=./tmp
  27. !
  28. ! Non-zero means paths are relative to the properties file. 
  29. ! Default is absolute paths for files.
  30. !
  31. relativeToProperties=1
  32. !
  33. ! Alternative partitions can be defined so that tables can be placed
  34. ! in multiple locations. Each partition is numbered: 1, 2, 3,... Tables
  35. ! can be created on partitions using the syntax 
  36. !
  37. !   CREATE TABLE <name> ON PARTITION <number>...
  38. !
  39. ! The partition count has to be supplied.
  40. !
  41. !partitionCount=2
  42. !
  43. ! The locations of each partition must be supplied. These are always
  44. ! absolute path names.
  45. !
  46. !partition1=d:/petes
  47. !partition2=c:/temp
  48.  
  49.  
  50. !---------------------------------------------------------------------
  51. !
  52. ! TUNING PROPERTIES
  53. !
  54. !---------------------------------------------------------------------
  55.  
  56. !
  57. ! The amount of each column to cache, expressed either as an absolute 
  58. ! number of rows or as a percentage figure. Defaults to 256 or 10 respectively.
  59. !
  60. cacheAmount=512
  61. !
  62. ! CACHE_ROWS Must be one of CACHE_ROWS or CACHE_PERCENT. Determines whether 
  63. ! to cache columns in tables based on an absolute number of rows, or the 
  64. ! percentage number of rows in the table. 
  65. !
  66. cacheCondition=CACHE_ROWS
  67. !
  68. ! The percentage cache hit improvement required in order to move the 
  69. ! cache to a new location in a column. 
  70. !
  71. ! (Currently not implemented).
  72. !
  73. cacheResetPercent=10
  74. !
  75. ! Non-zero means that database changes do not get written to the 
  76. ! database immediately. See tuning.html. 
  77. !
  78. fastUpdate=0
  79. !
  80. ! Percentage of free space in an index that must be present before 
  81. ! the index reorganises itself. High values means frequent index
  82. ! reorganisation. Low values means slow index inserts.
  83. !
  84. indexLoad=5
  85. !
  86. ! The number of cache misses to include in calculations of the next 
  87. ! base for the cache. 
  88. !
  89. ! (Currently not implemented).
  90. !
  91. missesInCacheStats=100
  92. !
  93. ! Non-zero means that results sets get instantiated on disk. By default
  94. ! InstantDB holds results sets emtirely in memory (apart from Binary
  95. ! columns). For large resulst sets this can be a problem. This property
  96. ! forces all results sets to be held on disk.
  97. !
  98. resultsOnDisk=0
  99. !
  100. ! Similar to cacheCondition but applies only to disk based
  101. ! results sets. Default is CACHE_ROWS.
  102. !
  103. resultsSetCache=CACHE_ROWS
  104. !
  105. ! Similar to cacheAmount but applies only to disk based
  106. ! results sets. Default is 100.
  107. !
  108. resultsSetCacheAmount=100
  109. !
  110. ! Number of rows to read into the disk look ahead buffer. 
  111. ! Recommended to be set somewhere around 128 to 256. 
  112. ! Default is 20.
  113. !
  114. rowCacheSize=128
  115. !
  116. ! By default, InstantDB only does a cursory search for deleted rows during 
  117. ! UPDATE statements. Setting searchDeletes=1 causes more detailed searches 
  118. ! for deleted rows. This slows down UPDATE executions, but reults in more 
  119. ! compact tables.  Default is 0.
  120. !
  121. searchDeletes=0
  122. !
  123. ! The interval, in milliseconds, between checks for statement execution
  124. ! timeouts. Default is 5000.
  125. !
  126. !timerCheck=5000
  127.  
  128. !---------------------------------------------------------------------
  129. !
  130. ! LOGGING AND DEBUGGING PROPERTIES
  131. !
  132. !---------------------------------------------------------------------
  133.  
  134. !
  135. ! Non-zero means include SQL statements in the export file. 
  136. !
  137. exportSQL=0
  138. !
  139. ! Non-zero means trace output also directed to console. 
  140. ! Defaults to 0.
  141. !
  142. traceConsole=0
  143. !
  144. ! Relative or absolute path where exporting and tracing goes.
  145. !
  146. traceFile=./idb_trace.log
  147. !
  148. ! Bitmap of various items that can be traced. See debug.html. 
  149. ! Defaults to 0.
  150. !
  151. traceLevel=2
  152.  
  153. !---------------------------------------------------------------------
  154. !
  155. ! TRANSACTION AND RECOVERY PROPERTIES
  156. !
  157. !---------------------------------------------------------------------
  158.  
  159. !
  160. ! 0 means do not perform recovery on startup.
  161. ! 1 means perform automatic recovery
  162. ! 2 (default) means prompt the user using standard in 
  163. !
  164. recoveryPolicy=1
  165. !
  166. ! Sets the level of transaction journalling. See trans.html.
  167. ! Defaults to 1.
  168. !
  169. ! 0 - No journalling takes place.
  170. ! 1 - Normal journalling (default).
  171. ! 2 - Full journalling.
  172. !
  173. transLevel=1
  174. !
  175. ! When doing an import, defines the number of rows imported 
  176. ! before the transaction is committed. Recommended value 8192.
  177. ! defaults to 100.
  178. !
  179. transImports=100
  180.  
  181. !---------------------------------------------------------------------
  182. !
  183. ! DATE, TIME AND CURRENCY PROPERTIES
  184. !
  185. !---------------------------------------------------------------------
  186.  
  187. !
  188. ! Number of digits after decimal point in currency outputs. Defaults to 2.
  189. !
  190. currencyDecimal=2
  191. !
  192. ! Currency symbol used in currency outputs. Defaults to $.
  193. !
  194. currencySymbol=$
  195. !
  196. ! Default format for date columns. Defaults to "yyyy-mm-dd".
  197. !
  198. dateFormat="yyyy-mm-dd"
  199. !
  200. ! If set, then all two digit dates less than its value are interpreted 
  201. ! as 21st century dates. 
  202. !
  203. !milleniumBoundary=50
  204. !
  205. ! Set to 1 causes the date string "now" to store a full timestamp. 
  206. ! Default is to store only the date for fields with now hour in the 
  207. ! format string.
  208. !
  209. nowMeansTime=0
  210.  
  211. !---------------------------------------------------------------------
  212. !
  213. ! STRING HANDLING PROPERTIES
  214. !
  215. !---------------------------------------------------------------------
  216.  
  217. !
  218. ! If set to 1 then String hashes use the JDK Object.hashCode() function.
  219. ! By default, uses InstantDB's String hashing.
  220. !
  221. altStringHashing=0
  222. !
  223. ! Set to 1 to cause LIKE clauses to always perform case insensitive 
  224. ! comparisons. 
  225. !
  226. likeIgnoreCase=0
  227. !
  228. ! Same as SET LITERAL STRICT_ON. Prevents string literals being interpreted
  229. ! as column names or numbers. Default is 0.
  230. !
  231. strictLiterals=0
  232. !
  233. ! Set this value to 1 (one) if you would like PreparedStatement.setString()
  234. ! to ignore "\" (backslash) characters when proceesing string constants.
  235. ! When set, InstantDB will not attempt to interpret \ as the start of an
  236. ! escape sequence. Default is 0.
  237. !
  238. prepareIgnoresEscapes=1
  239.  
  240. !---------------------------------------------------------------------
  241. !
  242. ! MISCELLANEOUS PROPERTIES
  243. !
  244. !---------------------------------------------------------------------
  245.  
  246. !
  247. ! Allows selected InstantDB keywords to be un-reserved. 
  248. ! e.g. ignoreKeywords=url,quote would allow the keywords 
  249. ! url and quote to be used as table or column names. 
  250. !
  251. ! This faciliy is provided for compatatbility reasons only.
  252. ! It's use is not recommended AND IS NOT SUPPORTED.
  253. !
  254. !ignoreKeywords
  255. !
  256. ! Non-zero means database is opened in read only mode.
  257. !
  258. readOnly=0
  259.