mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
3dac17511b
scripts/make_binary_distribution.sh: Change mode to -rw-rw-r-- scripts/mysql_convert_table_format.sh: Change mode to -rw-rw-r-- scripts/mysql_find_rows.sh: Change mode to -rw-rw-r-- scripts/mysql_setpermission.sh: Change mode to -rw-rw-r-- scripts/mysql_zap.sh: Change mode to -rw-rw-r-- scripts/mysqlaccess.sh: Change mode to -rw-rw-r-- scripts/mysqlbug.sh: Change mode to -rw-rw-r-- scripts/mysqlhotcopy.sh: Change mode to -rw-rw-r-- scripts/safe_mysqld-watch.sh: Change mode to -rw-rw-r-- scripts/safe_mysqld.sh: Change mode to -rw-rw-r-- scripts/mysqlaccess.conf: Change mode to -rw-rw-r-- support-files/binary-configure.sh: Change mode to -rw-rw-r-- Docs/Makefile.am: Remove manual.ps when doing make distclean Docs/manual.texi: Fix Makefile.am: Fix that my_config.h is properly created and removed include/Makefile.am: Fix that my_config.h is properly created and removed libmysql/Makefile.shared: Add some distclean targets scripts/Makefile.am: Add some distclean targets support-files/Makefile.am: Add some distclean targets
45 lines
1.7 KiB
Text
45 lines
1.7 KiB
Text
# ------------------------------------------------------------------------- #
|
|
# MySQLaccess version 2.0p2 #
|
|
# (c) Yves.Carlier@rug.ac.be, 1997 #
|
|
# #
|
|
# *** Configuration file *** #
|
|
# #
|
|
# -Default values read by mysqlaccess during initialisation. #
|
|
# This file is looked for in #
|
|
# 1) the current directory #
|
|
# 2) /etc/ #
|
|
# -Options given on the command-line override the values given in here #
|
|
# -Given options can't be overruled by empty/blanc options!! #
|
|
# ------------------------------------------------------------------------- #
|
|
|
|
|
|
# ----------------#
|
|
# Global settings #
|
|
# --------------- #
|
|
#$Param{'host'} = '';
|
|
$Param{'user'} = 'nobody';
|
|
$Param{'db'} = 'test';
|
|
$Param{'password'} = 'foobar';
|
|
$Param{'debug'} = 0;
|
|
|
|
# --------------------------#
|
|
# Settings for Command-line #
|
|
# ------------------------- #
|
|
if ($CMD) {
|
|
$Param{'superuser'} = 'root';
|
|
$Param{'rhost'} = 'localhost';
|
|
$Param{'spassword'} = '';
|
|
$Param{'brief'} = 1;
|
|
}
|
|
|
|
# ---------------------#
|
|
# Settings for CGI-BIN #
|
|
# -------------------- #
|
|
if ($CGI) {
|
|
$Param{'superuser'} = 'root';
|
|
$Param{'rhost'} = 'localhost';
|
|
$Param{'spassword'} = '';
|
|
$Param{'table'} = 1;
|
|
}
|
|
|
|
1; #to make require happy
|