Configuration

There are some Settings in the file const.php which you can change if you wish, but you can
also leave the Default-Settings. You will find this Settings in the file const.php after the
"User Settings" Comment:

Setting Default Value Description
DEBUG
0
0=Debug disabled, 1=Debug enabled
Prints out some Debug Infos. Usefull if you have an error or would like to report a Bug.
LIKE_CASE_SENSITIVE
0
0=LIKE is case insensitive, 1=LIKE is case sensitive
ORDER_CASE_SENSITIVE
0
0=ORDER BY is case insensitive (a -> b -> P -> X)
1=ORDER BY is case sensitive (P -> X -> a -> b).
ASSUMED_RECORD_SIZE
30

Set this to the average size of one record. This constant doesn't limit the max size of a record. It's only the assmued size of a record when a table is read for appending. If not a whole record is contained in ASSUMED_RECORD_SIZE bytes, the the number of bytes read is increased until a whole record was read. Choosing this value wisely may result in a better INSERT performance. If in doubt, leave the default value!

PRINT_ERRORS
1
0 = Errors are NOT displayed, 1 = Errors are displayed. Since Errors are an Error from the Developer most of the times (expect you use dynamic SQL Stataments), I recommend to set this to 1, expect you use dynamic generated SQL Strings.
PRINT_WARNINGS
0
0 = Warnings are NOT displayed, 1 = Warnings are displayed.