blob: 51e230c88e48402d93258a699d6984fda6a609c8 (
plain)
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
45
46
47
48
49
50
51
|
# Pg, Sybase, Oracle, Ingres, mSQL, ...
#
dbdriver = mysql
# SID for Oracle users, ignored for other databases
#
oracle_sid = ORASID
# default tex- file extension
#
texex = tex
# file name extension to insert before the last '.'
#
stx = _stx
# Comment-sign used in the replace file(s). Leave empty to disable comments
#
rfile_comment = ;
# Indicator of a regular expression in the replace file. The rfile_regexploc setting indicates the
# position of the regular expression and must be part of 'rfile_regexp'
# Refer to the documentation for more info. (see section~\ref{loops}).
#
rfile_regexploc = ...
rfile_regexp = re(...)
# Commend section. All SQLTeX commands start with <cmd_prefix> and are followed
# by the actual command. Change this only if latex commands are used that conflict
# with the defaults.
#
cmd_prefix = sql
sql_open = db
sql_field = field
sql_row = row
sql_params = setparams
sql_update = update
sql_start = start
sql_end = end
sql_use = use
# Are the commands 'less' and/or 'ore' available on this system ?
#
less_av = 1
more_av = 1
# The values below are used internally only. There's no need to change these,
# unless there are conflicts. Refer to the documentation for more info.
#
repl_step = OSTX
alt_cmd_prefix = processedsqlcommand
|