1
# ------------------------------------------------------------------------- #
2
# MySQLaccess version 2.0p2 #
3
# (c) Yves.Carlier@rug.ac.be, 1997 #
5
# *** Configuration file *** #
7
# -Default values read by mysqlaccess during initialisation. #
8
# This file is looked for in #
9
# 1) the current directory #
11
# -Options given on the command-line override the values given in here #
12
# -Given options can't be overruled by empty/blanc options!! #
13
# ------------------------------------------------------------------------- #
20
$Param{'user'} = 'nobody';
21
$Param{'db'} = 'test';
22
$Param{'password'} = 'foobar';
25
# --------------------------#
26
# Settings for Command-line #
27
# ------------------------- #
29
$Param{'superuser'} = 'root';
30
$Param{'rhost'} = 'localhost';
31
$Param{'spassword'} = '';
35
# ---------------------#
36
# Settings for CGI-BIN #
37
# -------------------- #
39
$Param{'superuser'} = 'root';
40
$Param{'rhost'} = 'localhost';
41
$Param{'spassword'} = '';
45
1; #to make require happy