Updates for SQL Validator

This commit is contained in:
Robin Johnson
2002-08-12 01:12:51 +00:00
parent bf604f46a8
commit 92f2ffcfca
2 changed files with 708 additions and 675 deletions

View File

@@ -1374,13 +1374,23 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
</dd>
<dt><b>$cfg['SQLValidator']['use']</b> boolean</dt>
<dd>TODO
<dd>
phpMyAdmin now supports use of the <a class="navigation" href="http://developer.mimer.com/validator/index.htm">Mimer SQL Validator</a> service,
as originally published on
<a class="navigation" href="http://developers.slashdot.org/article.pl?sid=02/02/19/1720246">Slashdot</a>.
<br />
For help in setting up your system to use the service, see the
<a class="navigation" href="#faqsqlvalidator">FAQ #6.14</a>.
<br /><br />
</dd>
<dt><b>$cfg['SQLValidator']['username']</b> string<br />
<b>$cfg['SQLValidator']['password']</b> string</dt>
<dd>TODO
<dd>
The SOAP service allows you to login with <tt>anonymous</tt>
and any password, so we use those by default.. Instead, if
you have an account with them, you can put your login details
here, and it will be used in place of the anonymous login.
<br /><br />
</dd>
@@ -2238,10 +2248,20 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
work with it, nor delete it.<br />
</p>
<p>
<p name="faqsqlvalidator">
<a name="faqsqlvalidator" />
<b>[6.14] How do I set up the SQL validator?</b>
<br />
TODO
To use it, you need a very recent version of PHP, built with
XML and PEAR support. On your system command line, run
<tt>"pear install Mail_Mime Net_DIME SOAP"</tt> to get the nessecary
PEAR modules for usage.
<br />
If you use it, you should be aware that any SQL statement you
submit will be stored anonymously (database/table/column names,
strings, numbers replaced with generic values). The Mimer SQL
Validator itself, is &copy; 2001 Upright Database Technology.
We utilize it as free XML-SOAP service.
</p>
<a name="faqproject"></a>

View File

@@ -834,11 +834,17 @@ CRIPT_NAME'], '/')+1);
+ quote_backtick Backtick quotes `
$cfg['SQLValidator']['use'] boolean
TODO
phpMyAdmin now supports use of the Mimer SQL Validator service,
as originally published on Slashdot.
For help in setting up your system to use the service, see the
FAQ #6.14.
$cfg['SQLValidator']['username'] string
$cfg['SQLValidator']['password'] string
TODO
The SOAP service allows you to login with anonymous and any
password, so we use those by default.. Instead, if you have an
account with them, you can put your login details here, and it
will be used in place of the anonymous login.
$cfg['ColumnTypes'] array
All possible types of a MySQL column. In most cases you don't
@@ -1404,7 +1410,14 @@ FAQ - Frequently Asked Questions
work with it, nor delete it.
[6.14] How do I set up the SQL validator?
TODO
To use it, you need a very recent version of PHP, built with XML and
PEAR support. On your system command line, run "pear install Mail_Mime
Net_DIME SOAP" to get the nessecary PEAR modules for usage.
If you use it, you should be aware that any SQL statement you submit
will be stored anonymously (database/table/column names, strings,
numbers replaced with generic values). The Mimer SQL Validator itself,
is <20> 2001 Upright Database Technology. We utilize it as free XML-SOAP
service.
[7. phpMyAdmin project]