Hi, I'm a little bit new in this area and I have this error
Can someone tell me what is this mean? -
Invalid expression term 'out' and
Identifier expected; 'out' is a keyword
Can someone tell me what is this mean? -
Invalid expression term 'out' and
Identifier expected; 'out' is a keyword
Code:
public static void userDell(string msi,String filename, String DB_CONN_STRING)
{
String temp_msisdn = "+" + msi;
bool ima = DatabaseConnection.checkExist(temp_msi);
bool result;
if (ima)
{
result = DatabaseConnection.deleteRoute(temp_msi);
}
System.out.println ("Delete Route " + temp_msi);
WriteLog.writeLog(filename + "|OK|DELETE|" + temp_msi + "||" + "route deleted||\n", "logs", "1.log");
}
Comment