Commit 64b91f4d authored by Matt Tucker's avatar Matt Tucker Committed by matt

Added note about "&" character.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4496 b35dd754-fafc-0310-a699-88a17e54d16e
parent c55ff691
...@@ -72,7 +72,10 @@ ...@@ -72,7 +72,10 @@
<a href="database.html">database guide</a> for common driver names for major databases. <a href="database.html">database guide</a> for common driver names for major databases.
</li> </li>
<li>jdbcProvider.connectionString -- the full connection string for the database. Please <li>jdbcProvider.connectionString -- the full connection string for the database. Please
consult your database driver documentation for syntax.</li> consult your database driver documentation for syntax. <b>Warning:</b> it's common
for connection string to contain "&" characters. That character has special meaning
in XML, so you should escape it using "&amp;amp;".
</li>
</ul> </ul>
<p> <p>
...@@ -83,7 +86,7 @@ ...@@ -83,7 +86,7 @@
... ...
&lt;jdbcProvider&gt; &lt;jdbcProvider&gt;
&lt;driver&gt;com.mysql.jdbc.Driver&lt;/driver&gt; &lt;driver&gt;com.mysql.jdbc.Driver&lt;/driver&gt;
&lt;connectionString&gt;jdbc:mysql://localhost/dbname?user=username&amp;password=secret&lt;/connectionString&gt; &lt;connectionString&gt;jdbc:mysql://localhost/dbname?user=username&amp;amp;password=secret&lt;/connectionString&gt;
&lt;/jdbcProvider&gt; &lt;/jdbcProvider&gt;
... ...
&lt;/jive&gt; &lt;/jive&gt;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment