I have a problem in my code or connection I think...
I tried to connect to a MySQL database and web service, but when I run the program, it gives me the following error:

@WebService() public class LostNumWebService {
/**
* Web service operation
*/
@WebMethod(operationName = "getCategory")
public List getCategory(@WebParam(name = "city_name")
String city_name) {
List cityName = null;
try{
String url = "jdbc:mysql://localhost:3306/mobileapplication";
Connection conn = DriverManager.getConnection(url,"***","***");
Statement stmt = conn.createStatement();
ResultSet rs;
rs = stmt.executeQuery("SELECT city_id, city_name FROM city WHERE city_name = $city_name");
while ( rs.next() ) {
String lastName = rs.getString("city_name");
cityName.add(lastName);
// System.out.println(lastName);
}
conn.close();
} catch (Exception e) {
System.err.println("Got an exception! ");
System.err.println(e.getMessage());
}
return cityName;
}
I don't know what's the error, the connection or the code? Can i get some help here, please?