mysqlaccess.conf
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. # ------------------------------------------------------------------------- #
  2. # MySQLaccess version 2.0p2                                                 #
  3. # (c) Yves.Carlier@rug.ac.be, 1997                                          #
  4. #                                                                           #
  5. #          *** Configuration file ***                                       #
  6. #                                                                           #
  7. #     -Default values read by mysqlaccess during initialisation.            #
  8. #      This file is looked for in                                           #
  9. #      1) the current directory                                             #
  10. #      2) /etc/                                                             #
  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. # ------------------------------------------------------------------------- #
  14. # ----------------#
  15. # Global settings #
  16. # --------------- #
  17.   #$Param{'host'}     = '';
  18.   $Param{'user'}     = 'nobody';
  19.   $Param{'db'}       = 'test';
  20.   $Param{'password'} = 'foobar';
  21.   $Param{'debug'}    = 0;
  22. # --------------------------#
  23. # Settings for Command-line #
  24. # ------------------------- #
  25. if ($CMD) {
  26.   $Param{'superuser'} = 'root';
  27.   $Param{'rhost'}     = 'localhost';
  28.   $Param{'spassword'} = '';
  29.   $Param{'brief'}     = 1;
  30. }
  31. # ---------------------#
  32. # Settings for CGI-BIN #
  33. # -------------------- #
  34. if ($CGI) {
  35.   $Param{'superuser'}  = 'root';
  36.   $Param{'rhost'}      = 'localhost';
  37.   $Param{'spassword'}  = '';
  38.   $Param{'table'}      = 1;
  39. }
  40. 1;  #to make require happy