1 # CSQL System Configuration File
3 #####################################Server Section########################
4 #Important: For Server section parameters, make sure that the value is same for the
5 # server process and all the csql client process which connects to it. otherwise,
6 # behavior is undefined
8 # Page size. Each database is logically divided into pages and allocation happens
9 # in this unit of pages. Increasing this value will reduce frequent allocation of pages.
12 #Total number of client process which can connect and work with the
13 # database concurrently
16 # Maximum size of the system database.
17 MAX_SYS_DB_SIZE=1048576
19 #Maximum size of the user database file.
22 #Shared memory key to be used by the system to create and locate system database.
25 #Shared memory key to be used by the system to create and locate user database.
28 #Give full path for the log file where important system actions are stored.
29 LOG_FILE=/tmp/log/csql/log.out
31 #The virtual memory start address at which the shared memory segment
32 # will be created and attached.
35 #Important: For Server section parameters, make sure that the value is same for the
36 # server process and all the csql client process which connects to it. otherwise,
37 # behavior is undefined
38 #####################################Client Section########################
40 #Mutex timeout interval seconds
42 MUTEX_TIMEOUT_USECS=5000
43 MUTEX_TIMEOUT_RETRIES=10
45 #Lock timeout interval seconds
47 LOCK_TIMEOUT_USECS=5000
48 LOCK_TIMEOUT_RETRIES=10
50 #####################################Cache Section########################
52 #Whether to enable caching of tables from target database
55 #DSN Name to connect to the target database.
56 #This should be present in ~/odbc.ini file
59 #Give full path for the file where all the cached table information is stored
60 TABLE_CONFIG_FILE=/tmp/csql/csqltable.conf
62 #####################################End Section########################