Re: A little problem with the JDBC URL
Yeung,
It looks like you're storing the URL in some XML-based file of some sort. If that's the case, '&' is a reserved character in XML, used to denote the start of entities. If you want to use '&' in XML, you actually need to use '&', so your URL would look something like (note that I've also dropped the 127.0.0.1 and ':3306', as those are defaults anyway):
jdbc:mysql:///pw3?user=test&password=test
-Mark
Subject
Written By
Posted
December 06, 2004 10:05PM
Re: A little problem with the JDBC URL
December 07, 2004 09:03AM
December 08, 2004 10:25PM
December 09, 2004 08:22AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.