Re: MySQL jdbc connection url [ + server.xml bug]

2001-11-01 Thread Paul DuBois
At 1:51 PM +0100 11/1/01, Andrius wrote: Hello, What's the correct MySQL jdbc connection url? I'm trying to setup jdbcRealm on tomcat 4.0.1, and using this url pattern : connectionURL=jdbc:mysql://localhost/authority?user=test;password=test but it goes wrong - it says Invalid

Re: MySQL jdbc connection url [ + server.xml bug]

2001-11-01 Thread David Smith
An additional note on the character in the connection URL for MySQL... XML syntax is going to require the character be encoded as amp; so the real URL should loo something like: jdbc:mysql://localhost/authority?user=testamp;password=test This is how I had to write it in my server.xml file.

Re: MySQL jdbc connection url [ + server.xml bug]

2001-11-01 Thread Paul DuBois
At 11:48 AM -0500 11/1/01, David Smith wrote: An additional note on the character in the connection URL for MySQL... XML syntax is going to require the character be encoded as amp; so the real URL should loo something like: jdbc:mysql://localhost/authority?user=testamp;password=test This is