* config.inc.php3:

- Comments for SQL Validator options
This commit is contained in:
Robin Johnson
2002-08-04 01:58:32 +00:00
parent cff6f5f7ab
commit a243db4601
2 changed files with 10 additions and 0 deletions

View File

@@ -33,6 +33,8 @@ $Source$
in the SQL query box in the SQL query box
* libraries/sqlvalidator.php3, libraries/sqlvalidator.class.php3: * libraries/sqlvalidator.php3, libraries/sqlvalidator.class.php3:
- Function documentation and cleanup - Function documentation and cleanup
* config.inc.php3:
- Comments for SQL Validator options
2002-08-02 Robin Johnson <robbat2@users.sourceforge.net> 2002-08-02 Robin Johnson <robbat2@users.sourceforge.net>
* libraries/defines*: * libraries/defines*:

View File

@@ -295,6 +295,14 @@ $cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries
$cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP $cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
$cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well) $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
/**
* If you wish to use the SQL Validator service, you shoule be
* aware of the following:
* All SQL statements are stored anonymously for statistical purposes.
* Mimer SQL Validator, Copyright 2002 Upright Database Technology.
* All rights reserved.
*/
$cfg['SQLValidator']['use'] = FALSE; // Make the SQL Validator available $cfg['SQLValidator']['use'] = FALSE; // Make the SQL Validator available
$cfg['SQLValidator']['username'] = ''; // If you have a custom username, specify it here (defaults to anonymous) $cfg['SQLValidator']['username'] = ''; // If you have a custom username, specify it here (defaults to anonymous)
$cfg['SQLValidator']['password'] = ''; // Password for username $cfg['SQLValidator']['password'] = ''; // Password for username